namespace StardewModdingAPI.Web.Framework.ModRepositories { /// Generic metadata about a mod. internal class ModInfoModel { /********* ** Accessors *********/ /// The mod name. public string Name { get; set; } /// The mod's latest release number. public string Version { get; set; } /// The mod's latest optional release, if newer than . public string PreviewVersion { get; set; } /// The mod's web URL. public string Url { get; set; } /// The error message indicating why the mod is invalid (if applicable). public string Error { get; set; } /********* ** Public methods *********/ /// Construct an empty instance. public ModInfoModel() { // needed for JSON deserialising } /// Construct an instance. /// The mod name. /// The semantic version for the mod's latest release. /// The semantic version for the mod's latest preview release, if available and different from . /// The mod's web URL. /// The error message indicating why the mod is invalid (if applicable). public ModInfoModel(string name, string version, string url, string previewVersion = null, string error = null) { this.Name = name; this.Version = version; this.PreviewVersion = previewVersion; this.Url = url; this.Error = error; } /// Construct an instance. /// The error message indicating why the mod is invalid. public ModInfoModel(string error) { this.Error = error; } } }