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