28 lines
781 B
C#
28 lines
781 B
C#
using System.Collections.Concurrent;
|
|
using Discord;
|
|
using NadekoBot.Common.Collections;
|
|
using NadekoBot.Core.Services.Database.Models;
|
|
|
|
namespace NadekoBot.Modules.Administration.Common
|
|
{
|
|
public enum ProtectionType
|
|
{
|
|
Raiding,
|
|
Spamming,
|
|
}
|
|
|
|
public class AntiRaidStats
|
|
{
|
|
public AntiRaidSetting AntiRaidSettings { get; set; }
|
|
public int UsersCount { get; set; }
|
|
public ConcurrentHashSet<IGuildUser> RaidUsers { get; set; } = new ConcurrentHashSet<IGuildUser>();
|
|
}
|
|
|
|
public class AntiSpamStats
|
|
{
|
|
public AntiSpamSetting AntiSpamSettings { get; set; }
|
|
public ConcurrentDictionary<ulong, UserSpamStats> UserStats { get; set; }
|
|
= new ConcurrentDictionary<ulong, UserSpamStats>();
|
|
}
|
|
}
|