superstar_v2/RemoteControlEventArgs.cs

9 lines
158 B
C#
Raw Normal View History

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