9 lines
248 B
C#
9 lines
248 B
C#
|
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; }
|
||
|
}
|