//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------ namespace System.IdentityModel { using System.Collections.Generic; /// /// An abstract class that provides a generic property bag to derived classes. /// public abstract class OpenObject { Dictionary _properties = new Dictionary(); // for any custom data /// /// Gets the properties bag to extend object. /// public Dictionary Properties { get { return _properties; } } } }