13 lines
315 B
C#
13 lines
315 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using umbraco.interfaces;
|
|
|
|
namespace Umbraco.Web.Editors
|
|
{
|
|
internal interface IEditorValidator : IDiscoverable
|
|
{
|
|
Type ModelType { get; }
|
|
IEnumerable<ValidationResult> Validate(object model);
|
|
}
|
|
} |