You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
650 B

5 years ago
5 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace IPA
  7. {
  8. /// <summary>
  9. /// A class to provide information about a mod on ModSaber.ML
  10. /// </summary>
  11. public class ModsaberModInfo
  12. {
  13. /// <summary>
  14. /// The name the mod uses on ModSaber as an identifier.
  15. /// </summary>
  16. public string InternalName { get; set; }
  17. /// <summary>
  18. /// The version of the currently installed mod. Used to compare to the version on ModSaber.
  19. /// </summary>
  20. public Version CurrentVersion { get; set; }
  21. }
  22. }