Files
pfm/PostFundManagement.Domain/Models/SiteVisit.cs
T
2026-08-15 15:06:08 +02:00

20 lines
427 B
C#

namespace PostFundManagement.Domain.Models;
public class SiteVisit
{
public long Id { get; set; }
public long ProjectId { get; set; }
public DateTime VisitedAt { get; set; }
public string? InspectorName { get; set; }
public string? Findings { get; set; }
public ApprovalStatus VerificationStatus { get; set; }
public Guid CreatedBy { get; set; }
public DateTime CreatedAt { get; set; }
}