using System.Collections.Generic; namespace WIDESEA_Core.Core { /// /// 自动出库任务配置选项 /// public class AutoOutboundTaskOptions { /// /// 是否启用自动出库任务 /// public bool Enable { get; set; } = true; /// /// 检查间隔(秒) /// public int CheckIntervalSeconds { get; set; } = 300; /// /// 按巷道前缀配置目标地址 /// public Dictionary TargetAddresses { get; set; } = new() { { "GW", "10081" }, { "CW", "10080" } }; } }