hrms-api-report-v1/Models/Recruits/RecruitDocument.cs

16 lines
359 B
C#
Raw Normal View History

2023-04-17 21:24:52 +07:00
using BMA.EHR.Recruit.Service.Models.Documents;
using BMA.EHR.Report.Service.Models;
using BMA.EHR.Report.Service.Models;
namespace BMA.EHR.Recruit.Service.Models.Recruits
{
public class RecruitDocument : EntityBase
{
public DateTime CreatedDate { get; set; }
public Document DocumentFile { get; set; }
public Recruit Recruit { get; set; }
}
}