using ESRI.ArcGIS.Display; using KGIS.Plugin.LayerProperty.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KGIS.Plugin.LayerProperty.Model { internal class DoStyleGalleryItem : IDoStyleGalleryItem { private IDoStyleGalleryClass styleGalleryClass; private IDoStyleGallery styleGallery; private string m_Category; private IStyleGalleryItem m_Item; private string m_Name; private long m_Number; private string m_Description; public IDoStyleGalleryClass StyleGalleryClass { get { return this.styleGalleryClass; } set { this.styleGalleryClass = value; } } public IDoStyleGallery StyleGallery { get { return this.styleGallery; } set { this.styleGallery = value; } } public string Category { get { return this.m_Category; } set { this.m_Category = value; } } public IStyleGalleryItem Item { get { return this.m_Item; } set { this.m_Item = value; } } public string Name { get { return this.m_Name; } set { this.m_Name = value; } } public long Number { get { return this.m_Number; } set { this.m_Number = value; } } public string Description { get { return this.m_Description; } set { this.m_Description = value; } } } }