Implemented models
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user