Files
AmiReel/Models/AppSettings.cs
T
2026-08-11 10:43:27 +02:00

12 lines
294 B
C#

namespace AmigaDB.VideoRenderer.Models;
public sealed record AppSettings(
string OutputFolder,
string EndCardPath,
string FfmpegPath,
string FfprobePath,
string Theme)
{
public static AppSettings Default(string outputFolder) => new(outputFolder, "", "", "", "Dark");
}