20 lines
427 B
C#
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; }
|
|
} |