using BMA.EHR.Recruit.Service.Models; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; namespace BMA.EHR.MetaData.Service.Models { public class BloodGroup : EntityBase { [Required, MaxLength(2), Column(Order = 1), Comment("ชื่อหมู่โลหิต")] public string name { get; set; } = string.Empty; // [Column(Order = 2), Comment("สถานะการใช้งาน")] // public bool IsActive { get; set; } = true; } }