11 lines
261 B
C#
11 lines
261 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Placement.Service.Requests
|
|
{
|
|
public class PlacementAddProfileRequest
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid? OfficerId { get; set; }
|
|
}
|
|
}
|