blob: 09dd0cc53c101416fdfce21fadd3e4a5f311c958 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace StardewModdingAPI.Toolkit.Framework.ModData
{
/// <summary>The valid field keys.</summary>
public enum ModDataFieldKey
{
/// <summary>A manifest update key.</summary>
UpdateKey,
/// <summary>An alternative URL the player can check for an updated version.</summary>
AlternativeUrl,
/// <summary>The mod's predefined compatibility status.</summary>
Status,
/// <summary>A reason phrase for the <see cref="Status"/>, or <c>null</c> to use the default reason.</summary>
StatusReasonPhrase
}
}
|