using BMA.EHR.Domain.Models.Base; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; namespace BMA.EHR.Domain.Models.Commands.Core { public class CommandStatus : EntityBase { [Required, MaxLength(100), Comment("สถานะของคำสั่ง")] public string Name { get; set; } = string.Empty; [Required, Comment("ลำดับการทำงาน")] public int Sequence { get; set; } = 0; } }