15 lines
546 B
C#
15 lines
546 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Discipline.Service.Requests
|
|
{
|
|
public class DisciplineComplaint_AppealUpdateRequest
|
|
{
|
|
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 Status { get; set; }
|
|
}
|
|
}
|