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

22 lines
821 B
C#
Raw Permalink Normal View History

2023-12-13 10:40:59 +07:00
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;
2024-05-29 16:29:12 +07:00
public string ProfileId { get; set; }
2023-12-13 10:40:59 +07:00
public string? CitizenId { get; set; }
public string? Fullname { get; set; }
2023-12-19 08:33:09 +07:00
public string? Position { get; set; }
public string? Oc { get; set; }
public string? profileType { get; set; }
2023-12-13 10:40:59 +07:00
public List<FormFile>? File { get; set; }
}
}