using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Txgy.EWS.Client.Models { public class AlarmSetting { /// /// 报警阈值(J) /// public double AlarmThreshold { get; set; } /// /// 报警音效 /// public string AlarmSound { get; set; } /// /// 刷新间隔(S) /// public int RefreshInterval { get; set; } } }