mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 05:25:41 +00:00
17 lines
473 B
C#
17 lines
473 B
C#
namespace SharpCompress.Compressor.Rar.VM
|
|
{
|
|
internal class VMPreparedCommand
|
|
{
|
|
internal VMPreparedCommand()
|
|
{
|
|
Op1 = new VMPreparedOperand();
|
|
Op2 = new VMPreparedOperand();
|
|
}
|
|
|
|
internal VMCommands OpCode { get; set; }
|
|
internal bool IsByteMode { get; set; }
|
|
internal VMPreparedOperand Op1 { get; private set; }
|
|
|
|
internal VMPreparedOperand Op2 { get; private set; }
|
|
}
|
|
} |