mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
15 lines
394 B
C#
15 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace RsenkTest.Commands
|
|
{
|
|
abstract class ParameterBase : CommandBase
|
|
{
|
|
public abstract override string Name { get; }
|
|
public abstract override string Summary { get; }
|
|
public abstract override void Help();
|
|
public abstract void Execute();
|
|
}
|
|
}
|