mirror of
https://github.com/osukey/osukey.git
synced 2025-05-20 21:17:32 +09:00
16 lines
408 B
C#
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; }
|
|
}
|
|
}
|