mirror of
https://github.com/snltty/linker.git
synced 2025-10-31 04:26:45 +08:00
10 lines
186 B
C#
10 lines
186 B
C#
namespace cmonitor.client.trigger
|
|
{
|
|
public interface ITrigger
|
|
{
|
|
public string Name { get; }
|
|
public string Desc { get; }
|
|
public void Execute();
|
|
}
|
|
}
|