AutoDispatching/AutoDispathingWork/Dto/Configuration/ClientOptionsReq.cs
2023-11-19 17:06:38 +08:00

11 lines
415 B
C#

namespace WorkerService1.Dto.Configuration;
public class ClientOptionsReq
{
public string ApiGateway { get; set; } = "http://121.4.75.240/";
public string UserName { get; set; } = "ganquanjiedao";
public string Password { get; set; } = "12345678a";
public int Delay { get; set; }
public bool DispatchingRunning { get; set; } = false;
public bool CloseFileRunning { get; set; } = false;
}