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.
24 lines
628 B
24 lines
628 B
namespace Win_in.Sfs.Wms.DataExchange.Agent;
|
|
|
|
public class DataExchangeOptions
|
|
{
|
|
public IncomingOptions IncomingOptions { get; set; }
|
|
public OutgoingOptions OutgoingOptions { get; set; }
|
|
}
|
|
|
|
public class IncomingOptions
|
|
{
|
|
public bool Active { get; set; }
|
|
public int PeriodSeconds { get; set; } = 5 * 60;
|
|
public int RetryTimes { get; set; } = 3;
|
|
public int BatchSize { get; set; } = 100;
|
|
}
|
|
|
|
public class OutgoingOptions
|
|
{
|
|
public bool Active { get; set; }
|
|
public int PeriodSeconds { get; set; } = 5 * 60;
|
|
public int RetryTimes { get; set; } = 3;
|
|
public int BatchSize { get; set; } = 100;
|
|
|
|
}
|
|
|