7 lines
163 B
C#
7 lines
163 B
C#
|
namespace Lesson5.Interfaces;
|
||
|
|
||
|
public interface IValidation
|
||
|
{
|
||
|
static string Check(string source, string destination) => throw new NotImplementedException();
|
||
|
}
|