Mineplex2018-withcommit/Website/LOC.Core/Model/Server/ServerUpdate.cs

16 lines
312 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Core.Model.GameServer
{
using System.Collections.Generic;
using Tokens.Client;
public class ServerUpdate
{
public ServerUpdate()
{
ClientTokens = new List<ClientToken>();
}
public List<ClientToken> ClientTokens { get; set; }
}
}