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