14 lines
353 B
C#
14 lines
353 B
C#
namespace Kreta.User.WebApi.Infrastructure
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string VersionName = "v1";
|
|
|
|
public const string RoutePrefix = "api/";
|
|
|
|
public static class ConfigurationSectionNames
|
|
{
|
|
public const string ApiKeyConfiguration = nameof(ApiKeyConfiguration);
|
|
}
|
|
}
|
|
}
|