namespace StardewModdingAPI.Toolkit.Framework.ModData
{
/// The valid field keys.
public enum ModDataFieldKey
{
/// A manifest update key.
UpdateKey,
/// An alternative URL the player can check for an updated version.
AlternativeUrl,
/// The mod's predefined compatibility status.
Status,
/// A reason phrase for the , or null to use the default reason.
StatusReasonPhrase,
/// Technical details shown in TRACE logs for the , or null to omit it.
StatusReasonDetails
}
}