design-patterns/Decorator/IComponent.cs

4 lines
55 B
C#
Raw Normal View History

2023-09-04 08:55:08 +00:00
public interface IComponent
{
void DoSomething();
}