blob: e0ab94b89349eb9ccba3b989b19e38ef7607658b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace StardewModdingAPI.Framework.Models
{
/// <summary>Default values for support fields to inject into the manifest.</summary>
internal class ModDataDefaults
{
/*********
** Accessors
*********/
/// <summary>The mod's unique ID in the Chucklefish mod site (if any), used for update checks.</summary>
public string ChucklefishID { get; set; }
/// <summary>The mod's unique ID in Nexus Mods (if any), used for update checks.</summary>
public string NexusID { get; set; }
/// <summary>The mod's organisation and project name on GitHub (if any), used for update checks.</summary>
public string GitHubProject { get; set; }
}
}
|