api จัดสรรเครื่องราช

This commit is contained in:
Kittapath 2023-08-18 14:35:45 +07:00
parent d30030141a
commit d5ffd5cb08
9 changed files with 15307 additions and 3 deletions

View file

@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Application.Requests
{
public class InsigniaManageRequest
{
public Guid Insignia { get; set; }
public int Year { get; set; }
public int Total { get; set; }
public string Type { get; set; }
}
}