13 lines
469 B
C#
13 lines
469 B
C#
using SWAD.API.Models.Config.ApiServices.Structure;
|
|
|
|
namespace SWAD.API.Models.Config.ApiServices;
|
|
|
|
// ReSharper disable once ClassNeverInstantiated.Global because: Is structure for config
|
|
public class ApiServicesConfig
|
|
{
|
|
public const string ConfigName = "APIServices";
|
|
|
|
// ReSharper disable once PropertyCanBeMadeInitOnly.Global
|
|
// ReSharper disable once NullableWarningSuppressionIsUsed
|
|
public ApiServiceData[] ServicesData { get; set; } = null!;
|
|
} |