9 lines
158 B
C#
9 lines
158 B
C#
|
using System;
|
||
|
|
||
|
namespace DualScreenDemo
|
||
|
{
|
||
|
public class RemoteControlEventArgs : EventArgs
|
||
|
{
|
||
|
public RemoteCommand Command { get; set; }
|
||
|
}
|
||
|
}
|