namespace VPLink.Common.Data;
///
/// Represents a message that is relayed between Discord and Virtual Paradise.
///
public readonly struct RelayedMessage
{
///
/// Initializes a new instance of the struct.
///
/// The author.
/// The content.
public RelayedMessage(string author, string content)
{
Author = author;
Content = content;
}
///
/// Gets the message content.
///
/// The message content.
public string Content { get; }
///
/// Gets the user that sent the message.
///
/// The user that sent the message.
public string Author { get; }
}