hrms-api-backend/BMA.EHR.Application/Responses/Insignias/PostProfileInsigniaDto.cs
moss 2f37334444
Some checks failed
release-dev / release-dev (push) Failing after 11s
edit insignia emp
2025-05-27 11:18:06 +07:00

33 lines
923 B
C#

namespace BMA.EHR.Application.Responses.Insignias
{
public class PostProfileInsigniaDto
{
public Guid profileId { get; set; }
public int year { get; set; } = 0;
public string no { get; set; } = string.Empty;
public string volume { get; set; } = string.Empty;
public string section { get; set; } = string.Empty;
public string page { get; set; } = string.Empty;
public DateTime receiveDate { get; set; } = DateTime.MinValue;
public Guid insigniaId { get; set; }
public DateTime dateAnnounce { get; set; } = DateTime.MinValue;
public string issue { get; set; } = string.Empty;
public string volumeNo { get; set; } = string.Empty;
public DateTime? refCommandDate { get; set; }
public string refCommandNo { get; set; } = string.Empty;
public string note { get; set; } = string.Empty;
}
}