Files
nadekobot/src/NadekoBot/Db/Models/IgnoredVoicePresenceChannel.cs
2024-04-27 16:03:48 +00:00

8 lines
193 B
C#

#nullable disable
namespace NadekoBot.Db.Models;
public class IgnoredVoicePresenceChannel : DbEntity
{
public LogSetting LogSetting { get; set; }
public ulong ChannelId { get; set; }
}