hrms-api-backend/BMA.EHR.Placement.Service/Requests/PersonPropertyRequest.cs

12 lines
257 B
C#
Raw Permalink Normal View History

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class PersonPropertyRequest
{
public string Name { get; set; }
public bool Value { get; set; }
}
}