namespace StardewModdingAPI.Framework.Models
{
/// Default values for support fields to inject into the manifest.
internal class ModDataDefaults
{
/*********
** Accessors
*********/
/// The mod's unique ID in the Chucklefish mod site (if any), used for update checks.
public string ChucklefishID { get; set; }
/// The mod's unique ID in Nexus Mods (if any), used for update checks.
public string NexusID { get; set; }
/// The mod's organisation and project name on GitHub (if any), used for update checks.
public string GitHubProject { get; set; }
}
}