Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/MECF/Framework/Common/IOCore/IoDataCache.cs

13 lines
292 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace MECF.Framework.Common.IOCore;
public class IoDataCachePerOffset<T> : Dictionary<int, T>, IIoDataCache
{
public IoDataCachePerOffset(string providerName)
{
ProviderName = providerName;
}
public string ProviderName { get; }
}