13 lines
373 B
C#
13 lines
373 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|