You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
485 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.AirportApiEntity
{
/// <summary>
/// 获取当前激活地图信息响应实体类
/// </summary>
public class ResponseActiveMapDataEntity
{
/// <summary>
/// 地图ID
/// </summary>
public string guid { get; set; }
/// <summary>
/// 地图名称
/// </summary>
public string name { get; set; }
}
}