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

11 lines
265 B
C#
Raw Permalink Normal View History

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; }
}
}