22 lines
647 B
C#
22 lines
647 B
C#
|
|
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;
|
|
// 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; }
|
|
}
|
|
}
|