superstar_v2/RemoteControlEventArgs.cs
2025-04-07 16:54:10 +08:00

9 lines
158 B
C#

using System;
namespace DualScreenDemo
{
public class RemoteControlEventArgs : EventArgs
{
public RemoteCommand Command { get; set; }
}
}