9 lines
No EOL
195 B
C#
9 lines
No EOL
195 B
C#
using System;
|
|
|
|
namespace Module.ProjectValidator
|
|
{
|
|
public interface IAttributeValidator<in T> where T : Attribute
|
|
{
|
|
ValidatorResult Validate(T attribute, object value);
|
|
}
|
|
} |