mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-11-24 22:42:50 +01:00
14 lines
282 B
C#
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);
|
|
}
|
|
}
|