AutoDispatching/AutoDispathingWork/Dto/QueryResponse/DispatchResp.cs
2023-11-14 22:54:12 +08:00

9 lines
189 B
C#

namespace WorkerService1.Dto.QueryResponse;
public class DispatchResp
{
public int code { get; set; }
public string msg { get; set; }
public object data { get; set; }
}