mirror of https://github.com/icedream/npsharp.git
13 lines
259 B
C#
13 lines
259 B
C#
|
|
using System;
|
||
|
|
using ProtoBuf;
|
||
|
|
|
||
|
|
namespace NPSharp.RPC.Messages.Client
|
||
|
|
{
|
||
|
|
[ProtoContract]
|
||
|
|
[Packet(1214)]
|
||
|
|
public sealed class FriendsGetUserAvatarMessage : RPCClientMessage
|
||
|
|
{
|
||
|
|
[ProtoMember(1)]
|
||
|
|
public Int32 Guid { get; set; }
|
||
|
|
}
|
||
|
|
}
|