Entities/Social/Note.cs

Plain data model for a social note between users. It stores the sender (From), recipient (To), message text (Text), and a timestamp (Date).

#nullable enable annotations

namespace LichessNET.Entities.Social;

public class Note
{
    public UserOverview From { get; set; }
    public UserOverview To { get; set; }
    public string Text { get; set; }
    public long Date { get; set; }
}