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

10 lines
231 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; }
2025-01-10 19:26:19 +07:00
public Guid nodeId { get; set; }
2024-12-15 19:00:38 +07:00
}
}