using BMA.EHR.Domain.Common; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BMA.EHR.Domain.Entities.MetaData.Prefix { public class PrefixDraftEntity : BaseDraftEntity { [Required, MaxLength(100), Column(Order = 1), Comment("รายละเอียดคำนำหน้า")] public string Name { get; set; } = string.Empty; } }