15 lines
359 B
C#
15 lines
359 B
C#
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; }
|
|
}
|
|
}
|