mirror of https://github.com/icedream/npsharp.git
13 lines
230 B
C#
13 lines
230 B
C#
|
|
using ProtoBuf;
|
|||
|
|
|
|||
|
|
namespace NPSharp.Rpc.Packets
|
|||
|
|
{
|
|||
|
|
[Packet(1003)]
|
|||
|
|
[ProtoContract]
|
|||
|
|
class AuthenticateWithTokenMessage : RpcClientMessage
|
|||
|
|
{
|
|||
|
|
[ProtoMember(1)]
|
|||
|
|
public string Token { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|