hrms-api-backend/BMA.EHR.Domain/Models/Report2/Report2DetailHistory.cs
Suphonchai Phoonsawat a0b3b13074 Add MetaData Table From ExistData
Change to use MySQL
2023-06-26 14:02:04 +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.Organization.Service.Models.Report2
{
public class Report2DetailHistory : EntityBase
{
public string? Detail { get; set; }
}
}