namespace Umbraco.Web.Models.ContentEditing { /// /// The action associated with saving a content item /// public enum ContentSaveAction { /// /// Saves the content item, no publish /// Save = 0, /// /// Creates a new content item /// SaveNew = 1, /// /// Saves and publishes the content item /// Publish = 2, /// /// Creates and publishes a new content item /// PublishNew = 3, /// /// Saves and sends publish notification /// SendPublish = 4, /// /// Creates and sends publish notification /// SendPublishNew = 5 } }