9 lines
195 B
C#
9 lines
195 B
C#
namespace Open_Closed.Interfaces
|
|
{
|
|
public interface IMagic
|
|
{
|
|
string MagicType { get; }
|
|
|
|
void CountYourMagic() => Console.WriteLine($"Your magic is {MagicType}.");
|
|
}
|
|
}
|