Initial AmiReel application

This commit is contained in:
2026-08-11 10:43:27 +02:00
commit 438f163630
28 changed files with 1160 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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");
}