mirror of
https://github.com/WowLegacyCore/HermesProxy
synced 2026-08-14 20:32:05 -04:00
17 lines
512 B
C#
17 lines
512 B
C#
// Copyright (c) CypherCore <http://github.com/CypherCore> All rights reserved.
|
|
// Licensed under the GNU GENERAL PUBLIC LICENSE. See LICENSE file in the project root for full license information.
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Framework.Web
|
|
{
|
|
[DataContract]
|
|
public class RealmCharacterCountEntry
|
|
{
|
|
[DataMember(Name = "wowRealmAddress")]
|
|
public int WowRealmAddress { get; set; }
|
|
|
|
[DataMember(Name = "count")]
|
|
public int Count { get; set; }
|
|
}
|
|
}
|