mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2025-05-07 17:34:10 +02:00
14 lines
268 B
C#
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);
|
|
}
|
|
}
|