13 lines
329 B
C#
13 lines
329 B
C#
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; }
|
|
}
|
|
}
|