mirror of https://github.com/icedream/npsharp.git
18 lines
317 B
C#
18 lines
317 B
C#
|
using ProtoBuf;
|
||
|
|
||
|
namespace NPSharp.RPC.Messages.Data
|
||
|
{
|
||
|
[ProtoContract]
|
||
|
public sealed class FriendsPresence
|
||
|
{
|
||
|
internal FriendsPresence()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[ProtoMember(1)]
|
||
|
public string Key { get; set; }
|
||
|
|
||
|
[ProtoMember(2)]
|
||
|
public string Value { get; set; }
|
||
|
}
|
||
|
}
|