17 lines
631 B
C#
17 lines
631 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using BMA.EHR.Report.Service.Models;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Profile.Service.Models.HR
|
|||
|
|
{
|
|||
|
|
public class ProfileChildren : EntityBase
|
|||
|
|
{
|
|||
|
|
public Guid? ChildrenPrefixId { get; set; }
|
|||
|
|
public string? ChildrenPrefix { get; set; }
|
|||
|
|
public string? ChildrenFirstName { get; set; }
|
|||
|
|
public string? ChildrenLastName { get; set; }
|
|||
|
|
public string? ChildrenCareer { get; set; }
|
|||
|
|
public virtual List<ProfileChildrenHistory> ProfileChildrenHistorys { get; set; } = new List<ProfileChildrenHistory>();
|
|||
|
|
public Profile? Profile { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|