Entities/Social/Note.cs

Simple data model for a social Note in LichessNET. It holds a sender (From), recipient (To), note text, and a Date timestamp.

#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; }
}