Files
WorkFlowCheck/src/WorkFlowCheck.Common/DTO/CheckPointListDTO.cs
T
2025-02-06 14:02:18 +01:00

10 lines
185 B
C#

namespace WorkFlowCheck.Common.DTO
{
public class CheckPointListDTO
{
public List<CheckPointDTO> CheckPointList { get; set; } = new List<CheckPointDTO>();
}
}