mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
- .logignore now lists all ignored channels and users when no parameter is provided - Renamed and cleaned up some log-related fields
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Services.Database.Models
|
|
{
|
|
public class LogSetting : DbEntity
|
|
{
|
|
public List<IgnoredLogItem> LogIgnores { get; set; } = new List<IgnoredLogItem>();
|
|
|
|
public ulong GuildId { get; set; }
|
|
public ulong? LogOtherId { get; set; }
|
|
public ulong? MessageUpdatedId { get; set; }
|
|
public ulong? MessageDeletedId { get; set; }
|
|
|
|
public ulong? UserJoinedId { get; set; }
|
|
public ulong? UserLeftId { get; set; }
|
|
public ulong? UserBannedId { get; set; }
|
|
public ulong? UserUnbannedId { get; set; }
|
|
public ulong? UserUpdatedId { get; set; }
|
|
|
|
public ulong? ChannelCreatedId { get; set; }
|
|
public ulong? ChannelDestroyedId { get; set; }
|
|
public ulong? ChannelUpdatedId { get; set; }
|
|
|
|
public ulong? UserMutedId { get; set; }
|
|
|
|
//userpresence
|
|
public ulong? LogUserPresenceId { get; set; }
|
|
|
|
//voicepresence
|
|
|
|
public ulong? LogVoicePresenceId { get; set; }
|
|
public ulong? LogVoicePresenceTTSId { get; set; }
|
|
}
|
|
}
|