using Microsoft.AspNetCore.Http; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Retirement.Service.Requests { public class RetirementAddProfileRequest { public Guid Id { get; set; } public string profileType { get; set; } } }