NBloodServerSupervisor/Model/State.cs

13 lines
272 B
C#
Raw Normal View History

2020-01-23 21:03:54 +01:00
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Text;
namespace Model
{
public class State
{
public ConcurrentDictionary<int, Server> Servers { get; } = new ConcurrentDictionary<int, Server>();
}
}