using System.ComponentModel.DataAnnotations; using BMA.EHR.Domain.Models.Base; using BMA.EHR.Domain.Models.Documents; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Domain.Models.Discipline { public class DisciplineComplaint_Channel : EntityBase { [Required, Comment("ชื่อประเภทการร้องเรียน")] public string Name { get; set; } = string.Empty; } }