wow-hermesproxy/Framework/Web/Rest/Misc/RealmCharacterCountEntry.cs
2022-01-29 16:44:34 +02:00

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; }
}
}