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

10 lines
276 B
C#

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