hrms-api-backend/BMA.EHR.Discipline.Service/Requests/DisciplineComplaint_AppealRequest.cs
Bright ad70e8164c
Some checks failed
release-dev / release-dev (push) Failing after 10s
เพิ่มฟิลด์สถานภาพ
2024-12-27 10:57:52 +07:00

21 lines
821 B
C#

using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Discipline.Service.Requests
{
public class DisciplineComplaint_AppealRequest
{
public string? Title { get; set; } = string.Empty;
public string? Description { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public int? Year { get; set; }
public string? CaseType { get; set; } = string.Empty;
public string? CaseNumber { get; set; } = string.Empty;
public string ProfileId { get; set; }
public string? CitizenId { get; set; }
public string? Fullname { get; set; }
public string? Position { get; set; }
public string? Oc { get; set; }
public string? profileType { get; set; }
public List<FormFile>? File { get; set; }
}
}