hrms-api-backend/BMA.EHR.Placement.Service/Requests/PersonEducationRequest.cs
harid cf9ae391a5
Some checks failed
release-dev / release-dev (push) Failing after 11s
no message
2025-11-24 16:01:48 +07:00

29 lines
No EOL
1 KiB
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class PersonEducationRequest
{
//public string Name { get; set; }
//public bool Value { get; set; }
public Guid? Id { get; set; }
public Guid? EducationLevelId { get; set; }
public Guid? PositionPathId { get; set; }
public string? Institute { get; set; }
public string? Degree { get; set; }
public string? Field { get; set; }
public string? Gpa { get; set; }
public string? Country { get; set; }
public string? Duration { get; set; }
public int DurationYear { get; set; }
public string? Other { get; set; }
public string? FundName { get; set; }
public bool? IsDate { get; set; }
public DateTime? FinishDate { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public string? EducationLevelName { get; set; }
}
}