forked from ddrilling/AsbCloudServer
13 lines
354 B
C#
13 lines
354 B
C#
using System;
|
|
using System.Collections.Concurrent;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
/// <summary>
|
|
/// Репозиторий для хранения в оперативке данных (от панели)
|
|
/// </summary>
|
|
public class InstantDataRepository : ConcurrentDictionary<int, ConcurrentDictionary<Type, object>>
|
|
{
|
|
}
|
|
}
|