ChipDemo/Core/Features/IFeatureWrapper.cs

8 lines
117 B
C#
Raw Permalink Normal View History

2023-04-09 16:22:54 +08:00
namespace Demo.Features;
public interface IFeatureWrapper
{
void ExecuteAll();
void Execute(string name);
}