hrms-api-backend/BMA.EHR.Retirement.Service/Requests/ProfileRequest.cs

11 lines
216 B
C#
Raw Permalink Normal View History

2023-07-22 22:14:50 +07:00
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class ProfileRequest
{
2024-05-29 16:29:12 +07:00
public string ProfileId { get; set; }
2023-07-22 22:14:50 +07:00
}
}