ออกคำสั่งวินัย
This commit is contained in:
parent
7556a6c400
commit
be98975ce0
10 changed files with 17496 additions and 68 deletions
|
|
@ -0,0 +1,17 @@
|
|||
|
||||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue