hrms-api-backend/BMA.EHR.Placement.Service/Requests/PlacementTransferRequest.cs

23 lines
655 B
C#
Raw Permalink Normal View History

2023-08-04 16:17:57 +07:00
using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class PlacementTransferRequest
{
public string Organization { get; set; }
public string Reason { get; set; }
public DateTime? Date { get; set; }
2023-08-04 16:17:57 +07:00
public List<FormFile>? File { get; set; }
}
public class PlacementTransferAdminRequest
{
public string ProfileId { get; set; }
public string Organization { get; set; }
public string Reason { get; set; }
public DateTime? Date { get; set; }
public List<FormFile>? File { get; set; }
}
2023-08-04 16:17:57 +07:00
}