Entities/Social/ChallengeResponse.cs

Entity model for social challenges. It defines a ChallengeResponse class with two lists, In and Out, holding 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; }
}