8 lines
244 B
C#
8 lines
244 B
C#
namespace SWAD.API.Models.Config;
|
|
|
|
public class ServicesEndpointsConfig
|
|
{
|
|
public const string ConfigName = "ServicesEndpoints";
|
|
// ReSharper disable once NullableWarningSuppressionIsUsed
|
|
public string Redis { get; init; } = null!;
|
|
} |