15 lines
476 B
C#
15 lines
476 B
C#
using BMA.EHR.Recruit.Service.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;
|
|
}
|
|
}
|