22 lines
451 B
C#
22 lines
451 B
C#
namespace PostFundManagement.Domain.Models;
|
|
|
|
public class Milestone
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public long ProjectId { get; set; }
|
|
|
|
public Guid CreatedBy { get; set; }
|
|
|
|
public Guid? UpdatedBy { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public DateTime DueAt { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public ApprovalStatus Status { get; set; }
|
|
} |