add model profile

This commit is contained in:
Kittapath 2023-10-12 02:56:03 +07:00
parent edf886512c
commit 60e3a5cf4a
5 changed files with 415 additions and 5 deletions

View file

@ -240,6 +240,12 @@ namespace BMA.EHR.Domain.Models.Placement
[Comment("Id รูปโปรไฟล์")]
public virtual Document? ProfileImg { get; set; }
[Comment("หมายเหตุแนวตั้ง")]
public string? RemarkVertical { get; set; }
[Comment("หมายเหตุแนวนอน")]
public string? RemarkHorizontal { get; set; }
public virtual List<PlacementCertificate> PlacementCertificates { get; set; } = new List<PlacementCertificate>();
public virtual List<PlacementEducation> PlacementEducations { get; set; } = new List<PlacementEducation>();
}