A simple data model representing a social note between users. It stores the sender and recipient as UserOverview, the note text, and a timestamp in a long Date field.
#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; }
}