using NadekoBot.Core.Services; using System; using System.Collections.Concurrent; namespace NadekoBot.Modules.Gambling.Services { public class WaifuService : INService { public ConcurrentDictionary DivorceCooldowns { get; } = new ConcurrentDictionary(); public ConcurrentDictionary AffinityCooldowns { get; } = new ConcurrentDictionary(); } }