2023-08-11 01:57:09 +07:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class RetirementAddProfileRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid Id { get; set; }
|
2025-01-17 11:21:39 +07:00
|
|
|
|
public string profileType { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|