hrms-api-backend/BMA.EHR.Discipline.Service/Requests/RetirementProfileRequest.cs

13 lines
309 B
C#
Raw Permalink Normal View History

using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Discipline.Service.Requests
{
public class DisciplineProfileRequest
{
public List<Guid> id { get; set; }
public FormFile? file { get; set; }
public string? remark { get; set; }
}
}