This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2023_Stanislav_Mykhailenko/Lesson_4/Task_2/Interfaces/IMagic.cs
2023-04-16 19:28:58 +03:00

9 lines
195 B
C#

namespace Open_Closed.Interfaces
{
public interface IMagic
{
string MagicType { get; }
void CountYourMagic() => Console.WriteLine($"Your magic is {MagicType}.");
}
}