12 lines
161 B
C#
12 lines
161 B
C#
|
namespace DualScreenDemo
|
||
|
{
|
||
|
public enum RemoteCommand
|
||
|
{
|
||
|
NextPage,
|
||
|
PreviousPage,
|
||
|
Play,
|
||
|
Pause,
|
||
|
Stop
|
||
|
|
||
|
}
|
||
|
}
|