1
0
mirror of https://github.com/maxartz15/Validator.git synced 2024-09-19 12:35:39 +02:00
Validator/Editor/IValidator.cs
2022-07-21 02:03:11 +02:00

8 lines
127 B
C#

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