hrms-api-backend/BMA.EHR.Domain/Models/Commands/Core/CommandStatus.cs

16 lines
492 B
C#
Raw Permalink Normal View History

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;
}
}