12 lines
309 B
C#
12 lines
309 B
C#
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; }
|
|
}
|
|
}
|