15 lines
542 B
C#
15 lines
542 B
C#
using BMA.EHR.Domain.Models.Base;
|
|
using BMA.EHR.Domain.Models.Documents;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BMA.EHR.Domain.Models.Placement
|
|
{
|
|
public class PlacementRelocationDoc : EntityBase
|
|
{
|
|
[Required, Comment("อ้างอิงรหัสเอกสาร")]
|
|
public Document Document { get; set; }
|
|
[Required, Comment("อ้างอิงย้าย")]
|
|
public virtual PlacementRelocation PlacementRelocation { get; set; }
|
|
}
|
|
}
|