Files
Umbraco-CMS/src/Umbraco.Web/Editors/IEditorValidator.cs
2018-11-22 14:05:51 +00:00

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);
}
}