final update
This commit is contained in:
17
Website/LOC.Core/Model/Server/Server.cs
Normal file
17
Website/LOC.Core/Model/Server/Server.cs
Normal file
@ -0,0 +1,17 @@
|
||||
namespace LOC.Core.Model.GameServer
|
||||
{
|
||||
using System.Collections.Generic;
|
||||
|
||||
public class Server
|
||||
{
|
||||
public int ServerId { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public string ConnectionAddress { get; set; }
|
||||
|
||||
public int PlayerLimit { get; set; }
|
||||
|
||||
public List<ServerHistory> History { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user