Files

20 lines
406 B
C#

namespace PostFundManagement.Domain.Models;
public class Instrument
{
public long Id { get; set; }
public long ProgrammeId { get; set; }
public string? Code { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public ActivityStatus Status { get; set; }
public Guid CreatedBy { get; set; }
public DateTime CreatedAt { get; set; }
}