11 lines
No EOL
265 B
C#
11 lines
No EOL
265 B
C#
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; }
|
|
}
|
|
} |