superstar_v2/RemoteControlEventArgs.cs

7 lines
143 B
C#
Raw Normal View History

2025-04-07 16:54:10 +08:00
namespace DualScreenDemo
{
public class RemoteControlEventArgs : EventArgs
{
public RemoteCommand Command { get; set; }
}
}