using System; using System.Collections.Generic; using System.Text; namespace Hopetry.App.SugarModel.CommonModel { public class WebSocketModel { /// /// 平台,费县-平邑 /// public string AreaName { get; set; } /// /// 模块名,无人机飞行数据还是火情数据 /// public string Module { get; set; } /// /// 数据 /// public dynamic Data { get; set; } } }