mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-12-02 03:38:01 +08:00
36 lines
802 B
C#
36 lines
802 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WalkingTec.Mvvm.Core
|
|
{
|
|
/// <summary>
|
|
/// DFS
|
|
/// </summary>
|
|
public class DFS
|
|
{
|
|
/// <summary>
|
|
/// StorageMaxConnection
|
|
/// </summary>
|
|
public int? StorageMaxConnection { get; set; }
|
|
|
|
/// <summary>
|
|
/// TrackerMaxConnection
|
|
/// </summary>
|
|
public int? TrackerMaxConnection { get; set; }
|
|
|
|
/// <summary>
|
|
/// ConnectionTimeout
|
|
/// </summary>
|
|
public int? ConnectionTimeout { get; set; }
|
|
|
|
/// <summary>
|
|
/// ConnectionLifeTime
|
|
/// </summary>
|
|
public int? ConnectionLifeTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Trackers
|
|
/// </summary>
|
|
public List<DFSTracker> Trackers { get; set; }
|
|
}
|
|
}
|