mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
16 lines
342 B
C#
16 lines
342 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class IgnoredLogItem : DbEntity
|
|
{
|
|
public int LogSettingId { get; set; }
|
|
public LogSetting LogSetting { get; set; }
|
|
public ulong LogItemId { get; set; }
|
|
public IgnoredItemType ItemType { get; set; }
|
|
}
|
|
|
|
public enum IgnoredItemType
|
|
{
|
|
Channel,
|
|
User
|
|
} |