namespace StreakBot.Data.Entities; public class Channel { public int Id { get; set; } public ulong ServerId { get; set; } public ulong ChannelId { get; set; } public ChannelType ChannelType { get; set; } public ulong? MessageId { get; set; } }