Defines a small internal Constants class for the LichessNET namespace containing a single BaseUrl constant set to the lichess.org base URL.
#nullable enable annotations
namespace LichessNET;
internal class Constants
{
public const string BaseUrl = "https://lichess.org/";
}