using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.Plugin.MapView.Model { public class WorkspaceInfo { public string ItemName { get; set; } public string ObjectType { get; set; } public string SelfPath { get; set; } public string ID { get; set; } public string ParentID { get; set; } } }