Controls, Startup&Driver improvements

This commit is contained in:
2023-08-09 11:54:32 +02:00
parent 2528487ff6
commit d549733b71
49 changed files with 875 additions and 120 deletions

View File

@@ -0,0 +1,6 @@
namespace FileTime.ConsoleUI.App.Configuration;
public class ConsoleApplicationConfiguration
{
public string? ConsoleDriver { get; set; }
}

View File

@@ -1,4 +1,5 @@
using TerminalUI.Models;
using TerminalUI.Color;
using TerminalUI.Models;
namespace FileTime.ConsoleUI.App;