21 lines
821 B
C#
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; }
|
|
}
|
|
}
|