10 lines
276 B
C#
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();
|
|
}
|