mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
8 lines
193 B
C#
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; }
|
|
} |