20 lines
370 B
C#
20 lines
370 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace vmsnet
|
|
{
|
|
class RemoteCommand : EventArgs
|
|
{
|
|
public rCommand Command;
|
|
public object Data;
|
|
public RemoteCommand(rCommand cmd, object data)
|
|
{
|
|
Command = cmd;
|
|
Data = data;
|
|
}
|
|
}
|
|
}
|