18 lines
467 B
C#
18 lines
467 B
C#
using BMA.EHR.Recruit.Service.Models.Documents;
|
|
using BMA.EHR.Report.Service.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BMA.EHR.Profile.Service.Models.HR
|
|
{
|
|
public class ProfileAvatarHistory : EntityBase
|
|
{
|
|
// [Key]
|
|
// public int Id { get; set; }
|
|
|
|
// public DateTime CreatedDate { get; set; } = DateTime.Now;
|
|
|
|
public Document AvatarFile { get; set; }
|
|
|
|
public Profile Profile { get; set; }
|
|
}
|
|
}
|