hrms-api-backend/BMA.EHR.Domain/Models/HR/ProfileAvatarHistory.cs
Suphonchai Phoonsawat 68dab7a727 Add Profile Table
2023-06-26 15:18:39 +07:00

14 lines
435 B
C#

using BMA.EHR.Domain.Models.Base;
using BMA.EHR.Domain.Models.Documents;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Domain.Models.HR
{
public class ProfileAvatarHistory : EntityBase
{
[Comment("Id ไฟล์รูปใน minio")]
public Document AvatarFile { get; set; }
[Comment("Id ทะเบียนประวัติ")]
public Profile Profile { get; set; }
}
}