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

18 lines
392 B
C#

using System.Collections.Generic;
namespace MECF.Framework.Common.IOCore;
/// <summary>
/// Key: Offset
/// Value: Buffer
/// </summary>
/// <typeparam name="T"></typeparam>
public class IoDataCachePerOffset<T> : Dictionary<int, T>, IIoDataCache
{
public IoDataCachePerOffset(string providerName)
{
ProviderName = providerName;
}
public string ProviderName { get; }
}