mirror of https://github.com/icedream/npsharp.git
12 lines
257 B
C#
12 lines
257 B
C#
|
using ProtoBuf;
|
||
|
|
||
|
namespace NPSharp.RPC.Messages.Client
|
||
|
{
|
||
|
[Packet(1104)]
|
||
|
[ProtoContract]
|
||
|
public sealed class StorageSendRandomStringMessage : RPCClientMessage
|
||
|
{
|
||
|
[ProtoMember(1)]
|
||
|
public string RandomString { get; set; }
|
||
|
}
|
||
|
}
|