foxcord/Foxcord/Models/Message.cs
2024-09-03 00:07:12 +02:00

9 lines
No EOL
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; }
}