11 lines
434 B
C#
11 lines
434 B
C#
namespace SWAD.API.Models.Config.ApiServices.Structure;
|
|
|
|
// ReSharper disable once ClassNeverInstantiated.Global because: Is structure for config
|
|
public class ApiServiceEndpoints
|
|
{
|
|
// ReSharper disable NullableWarningSuppressionIsUsed
|
|
public string Base { get; set; } = null!;
|
|
public string Api { get; set; } = null!;
|
|
public string Token { get; set; } = null!;
|
|
public string[] MusicLink { get; set; } = null!;
|
|
} |