11 lines
237 B
C#
11 lines
237 B
C#
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
||
|
|
{
|
||
|
|
public class DisciplineResultSummaryRequest
|
||
|
|
{
|
||
|
|
public string? remark { get; set; }
|
||
|
|
public string? offense { get; set; }
|
||
|
|
}
|
||
|
|
}
|