bloxstrap/Bloxstrap/Models/State.cs
pizzaboxer 7d672d6a0f
Remove ReShade
💀💀💀 reshade is gone 💀💀💀
2023-05-04 10:06:34 +01:00

11 lines
221 B
C#

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