Files
vms2016_kadisp/cVMS.NET_CS/Class/EventArgs.cs
2024-11-26 20:15:16 +09:00

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;
}
}
}