Added initial version 0.1.0
This commit is contained in:
parent
6aa4cb8596
commit
416759c213
64 changed files with 2181 additions and 0 deletions
9
Runtime/Interfaces/IAttributeValidator.cs
Normal file
9
Runtime/Interfaces/IAttributeValidator.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
using System;
|
||||
|
||||
namespace Module.ProjectValidator
|
||||
{
|
||||
public interface IAttributeValidator<in T> where T : Attribute
|
||||
{
|
||||
ValidatorResult Validate(T attribute, object value);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue