13 lines
470 B
C#
13 lines
470 B
C#
using BMA.EHR.Domain.Common;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BMA.EHR.Domain.Entities.MetaData.Prefix
|
|
{
|
|
public class PrefixDraftEntity : BaseDraftEntity<Guid>
|
|
{
|
|
[Required, MaxLength(100), Column(Order = 1), Comment("รายละเอียดคำนำหน้า")]
|
|
public string Name { get; set; } = string.Empty;
|
|
}
|
|
}
|