17 lines
577 B
C#
17 lines
577 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;
|
|
|
|
namespace BMA.EHR.Domain.Models.Insignias
|
|
{
|
|
public class InsigniaNote : EntityBase
|
|
{
|
|
[MaxLength(200)]
|
|
public string? Name { get; set; }
|
|
public int Year { get; set; }
|
|
public virtual List<InsigniaNoteProfile> InsigniaNoteProfiles { get; set; }
|
|
public virtual List<InsigniaNoteDoc> InsigniaNoteDocs { get; set; }
|
|
}
|
|
}
|