design-patterns/Decorator/IComponent.cs
2023-09-04 09:55:08 +01:00

4 lines
No EOL
55 B
C#

public interface IComponent
{
void DoSomething();
}