namespace StardewModdingAPI.Toolkit.Framework.Clients.WebApi
{
/// Metadata about a mod.
public class ModEntryModel
{
/*********
** Accessors
*********/
/// The mod's unique ID (if known).
public string ID { get; set; }
/// The mod name.
public string Name { get; set; }
/// The mod's latest version number.
public string Version { get; set; }
/// The mod's web URL.
public string Url { get; set; }
/// The mod's latest optional release, if newer than .
public string PreviewVersion { get; set; }
/// The web URL to the mod's latest optional release, if newer than .
public string PreviewUrl { get; set; }
/// The errors that occurred while fetching update data.
public string[] Errors { get; set; } = new string[0];
}
}