Files
nadekobot/NadekoBot.Core/Services/Database/Models/IgnoredVoicePresenceChannel.cs
2021-09-06 21:29:22 +02:00

9 lines
221 B
C#

namespace NadekoBot.Core.Services.Database.Models
{
public class IgnoredVoicePresenceChannel : DbEntity
{
public LogSetting LogSetting { get; set; }
public ulong ChannelId { get; set; }
}
}