10 lines
221 B
C#
10 lines
221 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
{
|
|
public class RetirementProfileRequest
|
|
{
|
|
public List<Guid> Id { get; set; }
|
|
}
|
|
}
|