SyncController API

This commit is contained in:
2025-02-06 14:02:18 +01:00
parent 7570908177
commit b5e5158f1e
7 changed files with 135 additions and 0 deletions
@@ -0,0 +1,10 @@
namespace WorkFlowCheck.Common.DTO
{
public class CheckPointDTO
{
public int Id { get; set; }
public string ShortName { get; set; }
public string Code { get; set; }
}
}
@@ -0,0 +1,9 @@
namespace WorkFlowCheck.Common.DTO
{
public class CheckPointListDTO
{
public List<CheckPointDTO> CheckPointList { get; set; } = new List<CheckPointDTO>();
}
}