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