initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using MessagePack;
|
||||
using Pulsar.Common.Messages.Other;
|
||||
|
||||
namespace Pulsar.Common.Messages.UserSupport.MessageBox
|
||||
{
|
||||
[MessagePackObject]
|
||||
public class DoShowMessageBox : IMessage
|
||||
{
|
||||
[Key(1)]
|
||||
public string Caption { get; set; }
|
||||
|
||||
[Key(2)]
|
||||
public string Text { get; set; }
|
||||
|
||||
[Key(3)]
|
||||
public string Button { get; set; }
|
||||
|
||||
[Key(4)]
|
||||
public string Icon { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user