hrms-api-backend/BMA.EHR.Domain/Models/HR/ProfileAvatarHistory.cs
Suphonchai Phoonsawat a0b3b13074 Add MetaData Table From ExistData
Change to use MySQL
2023-06-26 14:02:04 +07:00

15 lines
498 B
C#

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