11 lines
148 B
C#
11 lines
148 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Antmicro.OptionsParser
|
|||
|
|
{
|
|||
|
|
public interface IValidatedOptions
|
|||
|
|
{
|
|||
|
|
bool Validate(out string error);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|