123456789101112131415161718 |
- namespace VeloeMinecraftLauncher.Models.Entity;
- public class Modpack
- {
- public string Name { get; set; }
- public string Version { get; set; }
- public bool Forge { get; set; } = false;
- public bool ForgeOptifine { get; set; } = false;
- public bool Optifine { get; set; } = false;
- public bool Fabric { get; set; } = false;
- public string Url { get; set; }
- public int Revision { get; set; }
- public override string ToString()
- {
- return Name;
- }
- }
|