//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI.WebControls.WebParts { using System; /// /// Represents the personalization scope of an object or some data. /// public enum PersonalizationScope { /// /// Indicates that the personalized data applies to a specific user. /// User = 0, /// /// Indicates that the personalized data applies to all users. /// Shared = 1 } }