13 lines
355 B
C#
13 lines
355 B
C#
|
|
namespace WebApi.Tests.System;
|
|||
|
|
|
|||
|
|
public static class Constants
|
|||
|
|
{
|
|||
|
|
public static class Login
|
|||
|
|
{
|
|||
|
|
public const string ClientId = "vegasco";
|
|||
|
|
public const string ClientSecret = "siIgnkijkkIxeQ9BDNwnGGUb60S53QZh";
|
|||
|
|
public const string Username = "test.user";
|
|||
|
|
public const string Password = "T3sttest.";
|
|||
|
|
public const string Realm = "development";
|
|||
|
|
}
|
|||
|
|
}
|