namespace Umbraco.Web.Models.ContentEditing
{
///
/// The saved state of a content item
///
public enum ContentSavedState
{
///
/// The item isn't created yet
///
NotCreated = 1,
///
/// The item is saved but isn't published
///
Draft = 2,
///
/// The item is published and there are no pending changes
///
Published = 3,
///
/// The item is published and there are pending changes
///
PublishedPendingChanges = 4
}
}