1
0
mirror of https://github.com/chylex/Brotli-Builder.git synced 2024-11-24 22:42:50 +01:00
Brotli-Builder/BrotliCalc/Commands/Base/ICommand.cs

14 lines
282 B
C#

using BrotliLib.Numbers;
namespace BrotliCalc.Commands.Base{
interface ICommand{
string FullName { get; }
string ShortName { get; }
string ArgumentDesc { get; }
IntRange ArgumentCount { get; }
string Process(string[] args);
}
}