hrms-api-report-v1/Models/HR/ProfileChildren.cs

17 lines
631 B
C#
Raw Normal View History

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; }
}
}