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

26 lines
512 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}