You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
953 B
38 lines
953 B
using Kingo.PluginServiceInterface; |
|
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.Plugin.BatchDataLoad.Model |
|
{ |
|
public class BatchLoadDataModel |
|
{ |
|
private static BatchLoadDataModel instance; |
|
public static BatchLoadDataModel Instance |
|
{ |
|
get |
|
{ |
|
if (instance == null) |
|
{ |
|
instance = new BatchLoadDataModel(); |
|
} |
|
return instance; |
|
} |
|
} |
|
private BatchLoadDataModel() |
|
{ |
|
BatchLoadDatas = new List<LayerCfg>(); |
|
} |
|
public List<LayerCfg> BatchLoadDatas { get; set; } |
|
|
|
} |
|
|
|
public class AddTreeList |
|
{ |
|
public List<AddTreeList> AddTreeListLayers { get; set; } = new List<AddTreeList>(); |
|
public object AddTreeListGroupLayerInfo { get; set; } |
|
|
|
} |
|
}
|
|
|