initial commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using MessagePack;
|
||||
using Pulsar.Common.Messages.Other;
|
||||
|
||||
namespace Pulsar.Common.Messages
|
||||
{
|
||||
[MessagePackObject]
|
||||
public sealed class DoLoadUniversalPlugin : IMessage
|
||||
{
|
||||
[Key(1)]
|
||||
public string PluginId { get; set; }
|
||||
|
||||
[Key(2)]
|
||||
public byte[] PluginBytes { get; set; }
|
||||
|
||||
[Key(3)]
|
||||
public byte[] InitData { get; set; }
|
||||
|
||||
[Key(4)]
|
||||
public string TypeName { get; set; }
|
||||
|
||||
[Key(5)]
|
||||
public string MethodName { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user