Foxchat.NET/Foxchat.Chat/Database/Models/Channel.cs

9 lines
248 B
C#
Raw Normal View History

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; }
}