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; }
|
2024-12-27 10:57:52 +07:00
|
|
|
public string? profileType { get; set; }
|
2023-12-13 10:40:59 +07:00
|
|
|
public List<FormFile>? File { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|