10 lines
237 B
C#
10 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; }
|
|
}
|
|
}
|