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

11 lines
237 B
C#
Raw Permalink Normal View History

using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Discipline.Service.Requests
{
public class DisciplineResultSummaryRequest
{
public string? remark { get; set; }
public string? offense { get; set; }
}
}