An enum that lists possible reasons a chess challenge was denied in the LichessNET project. It defines values like Generic, Later, TooFast, TooSlow, TimeControl, Rated, Casual, Standard, Variant, NoBot, and OnlyBot.
#nullable enable annotations
namespace LichessNET.Entities.Enumerations;
public enum ChallengeDeniedReason
{ Generic, Later, TooFast, TooSlow, TimeControl, Rated, Casual, Standard, Variant, NoBot, OnlyBot
}