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.
18 lines
458 B
18 lines
458 B
using System;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Fawtyg.TyrpAgent;
|
|
|
|
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;
|
|
|
|
}
|
|
public static class common
|
|
{
|
|
public static DateTime updatedt { get; set; }
|
|
public static bool isupdate { get; set; }
|
|
}
|
|
|