13 lines
331 B
C#
13 lines
331 B
C#
|
|
using Microsoft.AspNetCore.Http;
|
|||
|
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Application.Requests
|
|||
|
|
{
|
|||
|
|
public class InsigniaManageOrganizationRequest
|
|||
|
|
{
|
|||
|
|
public Guid OrganizationOrganizationId { get; set; }
|
|||
|
|
public Guid insigniaManageId { get; set; }
|
|||
|
|
public int Total { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|