2026-05-12 16:32:46 +07:00
|
|
|
|
using BMA.EHR.Recruit.Models.Documents;
|
2023-03-13 12:29:56 +07:00
|
|
|
|
|
2026-05-12 16:32:46 +07:00
|
|
|
|
namespace BMA.EHR.Recruit.Models.Recruits
|
2023-03-13 12:29:56 +07:00
|
|
|
|
{
|
|
|
|
|
|
public class RecruitDocument : EntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public DateTime CreatedDate { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Document DocumentFile { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Recruit Recruit { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|