bloxstrap/Bloxstrap/Models/State.cs
pizzaboxer 6cc701f6a2
Remove ReShade
also fixed a bug with deleted mods not being correctly applied after adding webview2 support
2023-04-20 09:55:18 +01:00

15 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bloxstrap.Models
{
public class State
{
public string VersionGuid { get; set; } = "";
public List<string> ModManifest { get; set; } = new();
}
}