24 lines
491 B
C#
24 lines
491 B
C#
namespace PostFundManagement.Domain.Models;
|
|
|
|
public class Programme
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public long PortfolioId { get; set; }
|
|
|
|
public long InstrumentId { get; set; }
|
|
|
|
public Guid OwnedBy { get; set; }
|
|
|
|
public Guid CreatedBy { get; set; }
|
|
|
|
public Guid? UpdatedBy { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public ApprovalStatus Status { get; set; }
|
|
} |