10 lines
380 B
C#
10 lines
380 B
C#
|
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.";
|
||
|
}
|