Update Lesson 5 Task 1
This commit is contained in:
parent
b514612e8a
commit
a65d1400cb
1 changed files with 6 additions and 0 deletions
6
Lesson_5/Task_1/Interfaces/IValidation.cs
Normal file
6
Lesson_5/Task_1/Interfaces/IValidation.cs
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
namespace Lesson5.Interfaces;
|
||||||
|
|
||||||
|
public interface IValidation
|
||||||
|
{
|
||||||
|
static string Check(string source, string destination) => throw new NotImplementedException();
|
||||||
|
}
|
Reference in a new issue