forked from ddrilling/AsbCloudServer
14 lines
284 B
C#
14 lines
284 B
C#
|
using System;
|
|||
|
using System.Collections.Concurrent;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
public class InstantDataRepository: ConcurrentDictionary<int, ConcurrentDictionary<Type, object>>
|
|||
|
{
|
|||
|
}
|
|||
|
}
|