using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using BMA.EHR.Recurit.Exam.Service.Models; namespace BMA.EHR.Domain.Models.Placement { public class PlacementType : EntityBaseNoIsActive { [Required, Comment("ชื่อประเภทบรรจุ")] public string Name { get; set; } = string.Empty; [Comment("สถานะการใช้งาน")] public bool IsActive { get; set; } = true; } }