Update Lesson 5 Task 1

This commit is contained in:
Stanislav Mykhailenko 2023-04-12 11:56:22 +03:00
parent b514612e8a
commit a65d1400cb
GPG key ID: 1E95E66A9C9D6A36

View file

@ -0,0 +1,6 @@
namespace Lesson5.Interfaces;
public interface IValidation
{
static string Check(string source, string destination) => throw new NotImplementedException();
}