2022-04-11 17:22:52 +05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-08-09 11:10:01 +05:00
|
|
|
|
/// Репозиторий для хранения в оперативке данных (от панели)
|
2022-04-11 17:22:52 +05:00
|
|
|
|
/// </summary>
|
2022-04-11 18:00:34 +05:00
|
|
|
|
public class InstantDataRepository : ConcurrentDictionary<int, ConcurrentDictionary<Type, object>>
|
2022-04-11 17:22:52 +05:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|