diff options
Diffstat (limited to 'lib/utility/Command.cs')
| -rw-r--r-- | lib/utility/Command.cs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/utility/Command.cs b/lib/utility/Command.cs index c24064f..206df4b 100644 --- a/lib/utility/Command.cs +++ b/lib/utility/Command.cs @@ -1,12 +1,12 @@ -namespace gorilla.utility
-{
- public interface Command
- {
- void run();
- }
-
- public interface Command<in T>
- {
- void run(T item);
- }
-}
\ No newline at end of file +namespace jive.utility +{ + public interface Command + { + void run(); + } + + public interface Command<in T> + { + void run(T item); + } +} |
