namespace StardewModdingAPI.Web.Models
{
/// Generic metadata about a mod.
public class ModGenericModel
{
/*********
** Accessors
*********/
/// The unique mod ID.
public int ID { get; set; }
/// The mod name.
public string Name { get; set; }
/// The mod's vendor ID.
public string Vendor { get; set; }
/// The mod's semantic version number.
public string Version { get; set; }
/// The mod's web URL.
public string Url { get; set; }
/// Whether the mod is valid.
public bool Valid { get; set; } = true;
}
}