using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AIK.Models.HidModels { /// /// 重连状态信息 /// public class ReconnectStatus { public bool IsAutoReconnectEnabled { get; set; } public int ReconnectAttempts { get; set; } public int MaxReconnectAttempts { get; set; } public bool IsMonitoring { get; set; } } }