using BMA.EHR.Domain.Common; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BMA.EHR.Domain.Entities.MetaData.BloodGroup { public class BloodGroupDraftEntity : BaseDraftEntity { [Required, MaxLength(2), Column(Order = 1), Comment("ชื่อหมู่โลหิต")] public string Name { get; set; } = string.Empty; } }