feixian_weifajianguan/OpenAuth.App/ServiceApp/ShpGeo/Request/GeoStyleReq.cs

26 lines
512 B
C#
Raw Normal View History

2026-02-03 16:00:02 +08:00
namespace OpenAuth.App.ServiceApp.ShpGeo.Request;
/// <summary>
/// geo 样式
/// </summary>
public class GeoStyleReq
{
/// <summary>
/// 样式名称geo
/// </summary>
public string StyleName { get; set; }
/// <summary>
/// 标题
/// </summary>
public string Title { get; set; }
/// <summary>
/// sld地址
/// </summary>
public string SldPath { get; set; }
/// <summary>
/// 样式
/// </summary>
public string Style { get; set; }
}