using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IPA { /// /// A class to provide information about a mod on ModSaber.ML /// public class ModsaberModInfo { /// /// The name the mod uses on ModSaber as an identifier. /// public string InternalName { get; set; } /// /// The version of the currently installed mod. Used to compare to the version on ModSaber. /// public Version CurrentVersion { get; set; } } }