1
0
mirror of https://github.com/chylex/Brotli-Builder.git synced 2025-07-22 03:04:34 +02: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);
}
}