2023-08-11 01:57:09 +07:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PlacementAddProfileRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid Id { get; set; }
|
2025-03-28 23:45:36 +07:00
|
|
|
|
public Guid? OfficerId { get; set; }
|
2023-08-11 01:57:09 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|