hrms-api-backend/BMA.EHR.Insignia/Requests/GetInsigniaDetailByNodeReportDto.cs

10 lines
233 B
C#
Raw Normal View History

2024-12-15 19:00:38 +07:00
namespace BMA.EHR.Insignia.Service.Requests
{
public class GetInsigniaDetailByNodeReportDto
{
public Guid roundId { get; set; }
public int node { get; set; }
public string nodeId { get; set; }
}
}