hrms-api-recruit/Models/Placement/PlacementType.cs

16 lines
468 B
C#
Raw Normal View History

2026-05-12 16:32:46 +07:00
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Domain.Models.Placement
{
public class PlacementType : EntityBase
{
[Required, Comment("ชื่อประเภทบรรจุ")]
public string Name { get; set; } = string.Empty;
[Comment("สถานะการใช้งาน")]
public bool IsActive { get; set; } = true;
}
}