9 lines
240 B
C#
9 lines
240 B
C#
|
namespace Foxcord.Models;
|
||
|
|
||
|
public class Message
|
||
|
{
|
||
|
public Snowflake Id { get; init; }
|
||
|
public Snowflake ChannelId { get; init; }
|
||
|
public string Content { get; init; } = string.Empty;
|
||
|
public required User Author { get; init; }
|
||
|
}
|