SwapDude/SWAD.API/Models/Config/ServicesEndpointsConfig.cs
Lisoveliy aebe654c38
Some checks are pending
Deploy / update (push) Waiting to run
Build Project .NET / build (push) Waiting to run
chore: init commit from GitHub
2025-05-12 19:44:33 +03:00

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!;
}