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; } } }