using BMA.EHR.Domain.Common.Interfaces; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BMA.EHR.Domain.Common { public abstract class BaseDataEntity : BaseEntity, IActivableEntity { [Required, Column(Order = 990), Comment("สถานะการใช้งาน")] public bool IsActive { get; set; } = true; } }