1
0
mirror of https://github.com/maxartz15/Validator.git synced 2024-09-19 20:55:39 +02:00
Validator/Editor/IValidator.cs

7 lines
108 B
C#
Raw Normal View History

namespace Validator.Editor
{
public interface IValidator
{
public Report Validate();
}
}