Anapher/Strive

View on GitHub
src/Services/ConferenceManagement/Strive.Infrastructure/KeyValue/InMemory/InMemoryKeyValueData.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System.Collections.Generic;
using Nito.AsyncEx;

namespace Strive.Infrastructure.KeyValue.InMemory
{
    public class InMemoryKeyValueData
    {
        public readonly AsyncReaderWriterLock Lock = new();
        public readonly Dictionary<string, object> Data = new();
    }
}