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