namespace Foxchat.Chat.Database.Models; public class Channel : BaseModel { public Ulid GuildId { get; init; } public Guild Guild { get; init; } = null!; public string Name { get; set; } = null!; public string? Topic { get; set; } }