Code/Entities/Social/ChallengeResponse.cs

Simple data model for social challenges. Declares a ChallengeResponse class with two lists, In and Out, holding Challenge objects.

Networking
#nullable enable annotations

namespace LichessNET.Entities.Social;

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