mirror of
https://github.com/maxartz15/Validator.git
synced 2024-11-08 22:35:33 +01:00
8 lines
148 B
C#
8 lines
148 B
C#
namespace Validator.Editor
|
|
{
|
|
public interface IValidator
|
|
{
|
|
public string MenuName { get; }
|
|
public Report Validate();
|
|
}
|
|
} |