2024-07-01 21:44:11 +07:00
|
|
|
|
namespace BMA.EHR.Application.Responses.Insignias
|
2024-06-28 12:27:55 +07:00
|
|
|
|
{
|
|
|
|
|
|
public class PostProfileInsigniaDto
|
|
|
|
|
|
{
|
2025-05-27 11:18:06 +07:00
|
|
|
|
public Guid profileId { get; set; }
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public int year { get; set; } = 0;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public string no { get; set; } = string.Empty;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public string volume { get; set; } = string.Empty;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public string section { get; set; } = string.Empty;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public string page { get; set; } = string.Empty;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public DateTime receiveDate { get; set; } = DateTime.MinValue;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public Guid insigniaId { get; set; }
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public DateTime dateAnnounce { get; set; } = DateTime.MinValue;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public string issue { get; set; } = string.Empty;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public string volumeNo { get; set; } = string.Empty;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public DateTime? refCommandDate { get; set; }
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public string refCommandNo { get; set; } = string.Empty;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
|
2024-07-01 21:44:11 +07:00
|
|
|
|
public string note { get; set; } = string.Empty;
|
2024-06-28 12:27:55 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|