hrms-api-backend/BMA.EHR.Domain/Models/Organizations/Report2/Report2DetailHistory.cs
Suphonchai Phoonsawat 68dab7a727 Add Profile Table
2023-06-26 15:18:39 +07:00

12 lines
337 B
C#

using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Domain.Models.Base;
namespace BMA.EHR.Domain.Models.Organizations.Report2
{
public class Report2DetailHistory : EntityBase
{
public string? Detail { get; set; }
}
}