2017-10-13 04:14:54 +00:00
|
|
|
|
using NadekoBot.Core.Services;
|
2017-10-13 00:21:39 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
|
|
|
|
|
namespace NadekoBot.Modules.Gambling.Services
|
|
|
|
|
{
|
|
|
|
|
public class WaifuService : INService
|
|
|
|
|
{
|
|
|
|
|
public ConcurrentDictionary<ulong, DateTime> DivorceCooldowns { get; } = new ConcurrentDictionary<ulong, DateTime>();
|
|
|
|
|
public ConcurrentDictionary<ulong, DateTime> AffinityCooldowns { get; } = new ConcurrentDictionary<ulong, DateTime>();
|
|
|
|
|
}
|
|
|
|
|
}
|