14 lines
335 B
C#
14 lines
335 B
C#
|
|
namespace OpenAuth.App.ServiceApp.ShpGeo.Request;
|
|||
|
|
|
|||
|
|
public class UpdateGeoLayerShpReq
|
|||
|
|
{
|
|||
|
|
public string ServerName { get; set; }
|
|||
|
|
public string Id { get; set; }
|
|||
|
|
public string sldPath { get; set; }
|
|||
|
|
|
|||
|
|
public string style { get; set; }
|
|||
|
|
|
|||
|
|
public string countyname { get; set; }
|
|||
|
|
|
|||
|
|
public string StyleName { get; set; }
|
|||
|
|
}
|