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