mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
12 lines
271 B
C#
12 lines
271 B
C#
using WowUp.Common.Enums;
|
|
|
|
namespace WowUp.Common.Models.Warcraft
|
|
{
|
|
public class ChangedClient
|
|
{
|
|
public WowClientType ClientType { get; set; }
|
|
public string PreviousLocation { get; set; }
|
|
public string NewLocation { get; set; }
|
|
}
|
|
}
|