12 lines
498 B
C#
12 lines
498 B
C#
namespace SWAD.API.Models.Config.ApiServices.Structure;
|
|
|
|
// ReSharper disable once ClassNeverInstantiated.Global because: Is structure for config
|
|
public class ApiServiceData
|
|
{
|
|
// ReSharper disable NullableWarningSuppressionIsUsed
|
|
public string Name { get; set; } = null!;
|
|
public string ClientId { get; set; } = null!;
|
|
public string Secret { get; set; } = null!;
|
|
public ApiServiceEndpoints Endpoints { get; set; } = null!;
|
|
public ApiPaths ApiPaths { get; set; } = null!;
|
|
} |