osukey/osu.Game/Online/MisskeyAPI/EndpointConfiguration.cs
2022-07-02 22:37:38 +09:00

16 lines
408 B
C#

// Copyright (c) sim1222 <kokt@sim1222.com>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
#nullable disable
namespace osu.Game.Online.MisskeyAPI
{
public class EndpointConfiguration
{
/// <summary>
/// The endpoint for the main (osu-web) API.
/// </summary>
public string APIEndpointUrl { get; set; }
}
}