mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-25 08:22:07 +00:00
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props * Cleanup more messages * Fix more messages * Fix build issues
15 lines
484 B
C#
15 lines
484 B
C#
namespace Daybreak.Shared.Models.ReShade;
|
|
|
|
public sealed class ShaderPackage
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public bool Required { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? InstallPath { get; set; }
|
|
public string? TextureInstallPath { get; set; }
|
|
public string? DownloadUrl { get; set; }
|
|
public string? RepositoryUrl { get; set; }
|
|
public List<string>? EffectFiles { get; set; }
|
|
}
|