1
0
mirror of https://github.com/chylex/Brotli-Builder.git synced 2025-05-07 17:34:10 +02:00
Brotli-Builder/BrotliCalc/ICommand.cs

14 lines
268 B
C#

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