EllieHub/EllieHub/Common/AppConstants.cs

22 lines
No EOL
725 B
C#

namespace EllieHub.Common;
/// <summary>
/// Defines the constants used throughout the whole application.
/// </summary>
public static class AppConstants
{
/// <summary>
/// Defines the location of the default image for the bot avatar.
/// </summary>
public const string BotAvatarUri = "avares://EllieHub/Assets/ellie.png";
/// <summary>
/// The name for an <see cref="HttpClient"/> that does not automatically follow redirect responses.
/// </summary>
public const string NoRedirectClient = "NoRedirect";
/// <summary>
/// The name for an <see cref="HttpClient"/> that makes calls to the Toastielab API.
/// </summary>
public const string ToastielabClient = "NoRedirect";
}