Modpack.cs 492 B

123456789101112131415161718
  1. namespace VeloeMinecraftLauncher.Models.Entity;
  2. public class Modpack
  3. {
  4. public string Name { get; set; }
  5. public string Version { get; set; }
  6. public bool Forge { get; set; } = false;
  7. public bool ForgeOptifine { get; set; } = false;
  8. public bool Optifine { get; set; } = false;
  9. public bool Fabric { get; set; } = false;
  10. public string Url { get; set; }
  11. public int Revision { get; set; }
  12. public override string ToString()
  13. {
  14. return Name;
  15. }
  16. }