19 lines
670 B
C#
19 lines
670 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
||
|
|
{
|
||
|
|
public class DisciplineDisciplinaryInvestigateRequest
|
||
|
|
{
|
||
|
|
public string investigationDetail { get; set; }
|
||
|
|
public string? investigationDetailOther { get; set; }
|
||
|
|
public DateTime investigationDateStart { get; set; }
|
||
|
|
public DateTime investigationDateEnd { get; set; }
|
||
|
|
public string investigationDescription { get; set; }
|
||
|
|
public string investigationStatusResult { get; set; }
|
||
|
|
public string? investigationCauseText { get; set; }
|
||
|
|
public string? result { get; set; }
|
||
|
|
public Guid[] directors { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|