hrms-api-report-v1/Models/Report2/Report2DetailHistory.cs

12 lines
342 B
C#

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