mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
10 lines
248 B
C#
10 lines
248 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class ReShadeVersionManifest
|
|
{
|
|
public string ReShade { get; set; } = null!;
|
|
public string Presets { get; set; } = null!;
|
|
public string ConfigFile { get; set; } = null!;
|
|
}
|
|
}
|