13 lines
461 B
C#
13 lines
461 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.BloodGroup
|
|
{
|
|
public class BloodGroupDraftEntity : BaseDraftEntity<Guid>
|
|
{
|
|
[Required, MaxLength(2), Column(Order = 1), Comment("ชื่อหมู่โลหิต")]
|
|
public string Name { get; set; } = string.Empty;
|
|
}
|
|
}
|