namespace Win_in.Sfs.Wms.DataExchange.Fawtyg.MesAgent; public class MesOptions { public DataExchangeOptions IncomingOptions { get; set; } public DataExchangeOptions OutgoingOptions { get; set; } } 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; }