wabbajack/Wabbajack.App.Wpf/StatusMessages/NexusAPIQuotaExceeded.cs
2022-03-13 16:47:30 -06:00

13 lines
390 B
C#

using Wabbajack.Interventions;
namespace Wabbajack
{
public class NexusAPIQuotaExceeded : AErrorMessage
{
public override string ShortDescription => $"You have exceeded your Nexus API limit for the day";
public override string ExtendedDescription =>
"You have exceeded your Nexus API limit for the day, please try again after midnight GMT";
}
}