17 lines
344 B
C#
17 lines
344 B
C#
namespace Umbraco.Cms.Core.Services.OperationStatus;
|
|
|
|
public enum ContentEditingOperationStatus
|
|
{
|
|
Success,
|
|
CancelledByNotification,
|
|
ContentTypeNotFound,
|
|
ContentTypeCultureVarianceMismatch,
|
|
NotFound,
|
|
ParentNotFound,
|
|
NotAllowed,
|
|
TemplateNotFound,
|
|
TemplateNotAllowed,
|
|
PropertyTypeNotFound,
|
|
Unknown
|
|
}
|