16 lines
318 B
C#
16 lines
318 B
C#
namespace PostFundManagement.Domain.Models;
|
|
|
|
public class Outcome
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public long BeneficiaryId { get; set; }
|
|
|
|
public Guid CreatedBy { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
} |