SyncController API
This commit is contained in:
@@ -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>();
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user