Entities/Social/ChallengeResponse.cs

A simple data transfer object representing social challenges. It contains two lists, In and Out, each holding Challenge objects.

#nullable enable annotations

namespace LichessNET.Entities.Social;

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