Code/Constants.cs

Defines a small internal Constants class for the LichessNET namespace containing a single BaseUrl constant set to the lichess.org base URL.

Http Calls
🌐 https://lichess.org/
#nullable enable annotations

namespace LichessNET;

internal class Constants
{
    public const string BaseUrl = "https://lichess.org/";
}