13 lines
434 B
C#
13 lines
434 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
|
{
|
|
public class DisciplineResultRequest
|
|
{
|
|
public string? resultDescription { get; set; }// *สรุปผลการพิจารณา
|
|
public string? oc { get; set; }//
|
|
public string? disciplineType { get; set; }//
|
|
public string? titleType { get; set; }//
|
|
public int? year { get; set; }//
|
|
}
|
|
}
|