20 lines
823 B
C#
20 lines
823 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Domain.Models.Base;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using BMA.EHR.Domain.Models.Documents;
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
namespace BMA.EHR.Domain.Models.Insignias
|
|
{
|
|
public class InsigniaManageOrganiation : EntityBase
|
|
{
|
|
[Comment("จำนวนทั้งหมด")]
|
|
public int Total { get; set; }
|
|
[Comment("Fk Table OrganizationOrganization")]
|
|
public OrganizationOrganization OrganizationOrganization { get; set; }
|
|
[Comment("Fk Table InsigniaManage")]
|
|
public InsigniaManage InsigniaManage { get; set; }
|
|
public virtual List<InsigniaManageProfile> InsigniaManageProfiles { get; set; } = new List<InsigniaManageProfile>();
|
|
}
|
|
}
|