using System.Collections.Concurrent; using AyCode.Services.Logins; namespace AyCode.Blazor.Components.Services; public class AcSessionService where TSessionItem : IAcSessionItem where TSessionItemId : notnull { public ConcurrentDictionary Sessions { get; private set; } = []; public AcSessionService() { } }