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