initial commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using MessagePack;
|
||||
using Pulsar.Common.Messages.Other;
|
||||
|
||||
namespace Pulsar.Common.Messages.FunStuff
|
||||
{
|
||||
[MessagePackObject]
|
||||
public class DoCDTray : IMessage
|
||||
{
|
||||
[Key(0)]
|
||||
public bool Open { get; set; }
|
||||
|
||||
public DoCDTray() { }
|
||||
|
||||
public DoCDTray(bool open)
|
||||
{
|
||||
Open = open;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user