mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 07:17:00 -04:00
15 lines
257 B
C#
15 lines
257 B
C#
using ProtoBuf;
|
|
|
|
namespace WowUp.Common.Models.Warcraft
|
|
{
|
|
[ProtoContract]
|
|
public class Client
|
|
{
|
|
[ProtoMember(1)]
|
|
public string Location { get; set; }
|
|
|
|
[ProtoMember(13)]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|