Files
Umbraco-CMS/src/Umbraco.Core/Models/ContentEditing/ContentUpdateResultBase.cs

10 lines
284 B
C#
Raw Normal View History

namespace Umbraco.Cms.Core.Models.ContentEditing;
public abstract class ContentUpdateResultBase<TContent>
where TContent : class, IContentBase
{
public TContent Content { get; init; } = null!;
public ContentValidationResult ValidationResult { get; init; } = new();
}