blob: 235bcec4e0dede850da1d05694dfe77bbc2d106d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace StardewModdingAPI.Web.Framework
{
/// <summary>The mod availability status on a remote site.</summary>
internal enum RemoteModStatus
{
/// <summary>The mod is valid.</summary>
Ok,
/// <summary>The mod data was fetched, but the data is not valid (e.g. version isn't semantic).</summary>
InvalidData,
/// <summary>The mod does not exist.</summary>
DoesNotExist,
/// <summary>The mod page exists, but it requires a subkey and none was provided.</summary>
RequiredSubkeyMissing,
/// <summary>The mod was temporarily unavailable (e.g. the site could not be reached or an unknown error occurred).</summary>
TemporaryError
}
}
|