18 lines
363 B
C#
18 lines
363 B
C#
namespace PostFundManagement.Domain.Models;
|
|
|
|
public class Instrument
|
|
{
|
|
public long Id { 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; }
|
|
} |