mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-20 17:41:29 -07:00
instead of removing reshade outright, it's probably better to just make people switch to LIVE for now. yeah, reshade is on its last knees, but if there's still time, i'm taking it
17 lines
437 B
C#
17 lines
437 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 string ReShadeConfigVersion { get; set; } = "";
|
|
public string ExtraviReShadePresetsVersion { get; set; } = "";
|
|
public List<string> ModManifest { get; set; } = new();
|
|
}
|
|
}
|