Code/Entities/Social/ChallengeResponse.cs

A simple data model for social challenges in LichessNET. It defines a ChallengeResponse class with two lists, In and Out, representing incoming and outgoing Challenge objects.

#nullable enable annotations

namespace LichessNET.Entities.Social;

public class ChallengeResponse
{
    public List<Challenge> In { get; set; }
    public List<Challenge> Out { get; set; }
}