mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
18 lines
501 B
C#
18 lines
501 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 RbxFpsUnlockerVersion { get; set; } = "";
|
|
public string ReShadeConfigVersion { get; set; } = "";
|
|
public string ExtraviReShadePresetsVersion { get; set; } = "";
|
|
public List<string> ModManifest { get; set; } = new();
|
|
}
|
|
}
|