It is done!

This commit is contained in:
Emotion 2023-10-05 00:44:51 +13:00
parent 761a519028
commit dcf649f9d2
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: D7D3E4C27A98C37B
143 changed files with 8234 additions and 2 deletions
EllieHub/Common

View file

@ -0,0 +1,17 @@
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";
}