| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using System.Collections.Generic; |
| | | |
| | | namespace WIDESEA_Core.Core |
| | | { |
| | | /// <summary> |
| | | /// èªå¨åºåºä»»å¡é
ç½®é项 |
| | | /// </summary> |
| | | public class AutoOutboundTaskOptions |
| | | { |
| | | /// <summary> |
| | | /// æ¯å¦å¯ç¨èªå¨åºåºä»»å¡ |
| | | /// </summary> |
| | | public bool Enable { get; set; } = true; |
| | | |
| | | /// <summary> |
| | | /// æ£æ¥é´éï¼ç§ï¼ |
| | | /// </summary> |
| | | public int CheckIntervalSeconds { get; set; } = 300; |
| | | |
| | | /// <summary> |
| | | /// æå··éåç¼é
ç½®ç®æ å°å |
| | | /// </summary> |
| | | public Dictionary<string, string> TargetAddresses { get; set; } |
| | | = new() |
| | | { |
| | | { "GW", "10081" }, |
| | | { "CW", "10080" } |
| | | }; |
| | | } |
| | | } |