using System.Collections.Generic; namespace WalkingTec.Mvvm.Core { /// /// DFS /// public class DFS { /// /// StorageMaxConnection /// public int? StorageMaxConnection { get; set; } /// /// TrackerMaxConnection /// public int? TrackerMaxConnection { get; set; } /// /// ConnectionTimeout /// public int? ConnectionTimeout { get; set; } /// /// ConnectionLifeTime /// public int? ConnectionLifeTime { get; set; } /// /// Trackers /// public List Trackers { get; set; } } }