hrms-api-backend/BMA.EHR.Discipline.Service/Requests/PassDisciplineResponse.cs

23 lines
647 B
C#
Raw Permalink Normal View History


namespace BMA.EHR.Discipline.Service.Requests
{
public class PassDisciplineResponse
{
// public bool successful { get; set; }
public List<DisciplineDataResponse> result { get; set; } = new();
}
public class DisciplineDataResponse
{
public Guid id { get; set; } = Guid.Empty;
2024-10-02 21:29:44 +07:00
// public Guid personId { get; set; } = Guid.Empty;
public Guid? commandId { get; set; } = Guid.Empty;
public DateTime? commandAffectDate { get; set; }
public string? commandNo { get; set; }
public int? commandYear { get; set; }
public string? detail { get; set; }
}
}