You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
778 B
39 lines
778 B
using System.Net;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Fawtyg.MesAgent;
|
|
|
|
public class InjectionMoldingTaskOptions
|
|
{
|
|
public DataExchangeOptions IncomingOptions { get; set; }
|
|
public DataExchangeOptions OutgoingOptions { get; set; }
|
|
|
|
public InjectionAutoRemote AutoRemote { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
public class InjectionAutoRemote
|
|
{
|
|
|
|
public string IpAddress { set; get; }
|
|
public string UserName { set; get; }
|
|
public string Password { set; get; }
|
|
public string Token { set; get; }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class DataExchangeOptions
|
|
{
|
|
public bool Active { get; set; }
|
|
public int PeriodSeconds { get; set; } = 60;
|
|
public int BatchSize { get; set; } = 10;
|
|
public int MaxCount { get; set; } = 100;
|
|
public int RetryTimes { get; set; } = 3;
|
|
|
|
}
|
|
|