17 lines
538 B
C#
17 lines
538 B
C#
using BMA.EHR.MetaData.Service.Models;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BMA.EHR.Organization.Service.Models
|
|
{
|
|
/// <summary>
|
|
/// เก็บข้อมูลไฟล์ structure ที่ถูกสร้างตอนทำการ publish
|
|
/// </summary>
|
|
public class OrganizationPublishFileEntity : EntityBase
|
|
{
|
|
[Required]
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
[Required]
|
|
public string FileName { get; set; } = string.Empty;
|
|
}
|
|
}
|