EllieHub/EllieHub/Common/AppConstants.cs

22 lines
731 B
C#
Raw Normal View History

2023-10-05 00:44:51 +13:00
namespace EllieHub.Common;
/// <summary>
/// Defines the constants used throughout the whole application.
/// </summary>
2024-07-02 01:55:23 +12:00
public static class AppConstants
2023-10-05 00:44:51 +13:00
{
/// <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";
2024-07-02 01:55:23 +12:00
/// <summary>
/// The name for an <see cref="HttpClient"/> that makes calls to the Toastielab API.
/// </summary>
public const string ToastielabClient = "ToastielabClient";
2023-10-05 00:44:51 +13:00
}