// Copyright (c) AlphaSierraPapa for the SharpDevelop Team // This code is distributed under the MS-PL (for details please see \doc\MS-PL.txt) using System; using System.Collections.Generic; namespace Ricciolo.StylesExplorer.MarkupReflection { public class KeyMapping { List staticResources; public List StaticResources { get { return staticResources; } } public bool HasStaticResources { get { return staticResources != null && staticResources.Count > 0; } } public string KeyString { get; set; } public bool Shared { get; set; } public bool SharedSet { get; set; } public KeyMapping() { this.staticResources = new List(); } public KeyMapping(string key) { this.KeyString = key; } } }