RegexBot/Common/Messages.cs

10 lines
380 B
C#
Raw Normal View History

namespace RegexBot.Common;
/// <summary>
/// Commonly used strings used throughout the bot and modules.
/// </summary>
public static class Messages {
/// <summary>
/// Gets a string generally appropriate to display in the event of a 403 error.
/// </summary>
public const string ForbiddenGenericError = "Failed to perform the action due to a permissions issue.";
}