namespace Umbraco.Core.PropertyEditors
{
///
/// Indicates the level of a value.
///
public enum PropertyValueLevel
{
///
/// The source value, i.e. what is in the database.
///
Source,
///
/// The conversion intermediate value.
///
Inter,
///
/// The converted value.
///
Object
}
}