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

20 lines
758 B
C#

using System.ComponentModel.DataAnnotations;
using BMA.EHR.Domain.Models.Base;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Domain.Models.HR
{
public class ProfileChildrenHistory : EntityBase
{
[Comment("Id คำนำหน้าบุตร")]
public Guid? ChildrenPrefixId { get; set; }
[Comment("คำนำหน้าบุตร")]
public string? ChildrenPrefix { get; set; }
[Comment("ชื่อบุตร")]
public string? ChildrenFirstName { get; set; }
[Comment("นามสกุลบุตร")]
public string? ChildrenLastName { get; set; }
[Comment("อาชีพบุตร")]
public string? ChildrenCareer { get; set; }
}
}