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; }