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