using BMA.EHR.Domain.Common; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace BMA.EHR.Domain.Entities.MetaData.Prefix { public class PrefixPublishHistoryEntity : BaseEntity { [Column(Order = 1), Comment("รายละเอียดการแก้ไข")] public string Detail { get; set; } = string.Empty; [Column(Order = 2), Comment("เก็บ Object ที่มีการอัพเดตในระบบ")] public string ObjectValue { get; set; } = string.Empty; } }