11 lines
258 B
C#
11 lines
258 B
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
{
|
|
public class PersonEducationRequest
|
|
{
|
|
public string Name { get; set; }
|
|
public bool Value { get; set; }
|
|
}
|
|
}
|