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

24 lines
481 B
C#

namespace PostFundManagement.Domain.Models;
public class Beneficiary
{
public long Id { get; set; }
public long ProjectId { get; set; }
public Guid UserId { get; set; }
public Guid CreatedBy { get; set; }
public DateTime CreatedAt { get; set; }
public string? Name { get; set; }
public string? Category { get; set; }
public int TargetCount { get; set; }
public int ReachedCount { get; set; }
public string? Location { get; set; }
}