Files
Umbraco-CMS/src/Umbraco.Core/Services/OperationStatus/ContentEditingOperationStatus.cs
2023-02-23 07:31:05 +01:00

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
}