mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2025-01-08 19:12:34 +01:00
13 lines
272 B
C#
13 lines
272 B
C#
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>();
|
|
}
|
|
}
|