2023-06-05 20:22:51 +07:00
|
|
|
|
using BMA.EHR.Domain.Common;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
2023-06-25 18:36:02 +07:00
|
|
|
|
namespace BMA.EHR.Domain.Entities.MetaData.Prefix
|
2023-06-05 20:22:51 +07:00
|
|
|
|
{
|
2023-06-25 18:36:02 +07:00
|
|
|
|
public class PrefixEntity : BaseDataEntity<Guid>
|
2023-06-05 20:22:51 +07:00
|
|
|
|
{
|
|
|
|
|
|
[Required, MaxLength(100), Column(Order = 1), Comment("รายละเอียดคำนำหน้า")]
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|