namespace StardewModdingAPI.Framework.Models
{
/// Contains abstract metadata about an incompatible mod.
internal class IncompatibleMod
{
/*********
** Accessors
*********/
/// The unique mod ID.
public string ID { get; set; }
/// The mod name.
public string Name { get; set; }
/// The most recent incompatible mod version.
public string Version { get; set; }
/// The URL the user can check for an official updated version.
public string UpdateUrl { get; set; }
/// The URL the user can check for an unofficial updated version.
public string UnofficialUpdateUrl { get; set; }
}
}