Infrastructure/OpenAuth.Repository/Domain/FireManagement/WebSocketModel.cs

23 lines
547 B
C#
Raw Normal View History

2025-03-31 16:40:54 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Hopetry.App.SugarModel.CommonModel
{
public class WebSocketModel
{
/// <summary>
/// 平台,费县-平邑
/// </summary>
public string AreaName { get; set; }
/// <summary>
/// 模块名,无人机飞行数据还是火情数据
/// </summary>
public string Module { get; set; }
/// <summary>
/// 数据
/// </summary>
public dynamic Data { get; set; }
}
}