Files
deepdrft/DeepDrftCli/Models/CliSettings.cs
T
daniel-c-harvey 69c8fcfe3c Front End Rework & Deployment Cleanup
- Restructured references to service projects instead of ASP.NET Core web projects
 - Terminal.Gui front end for easy track management from the shell
2025-09-07 12:58:43 -04:00

8 lines
204 B
C#

namespace DeepDrftCli.Models
{
public class CliSettings
{
public string ConnectionString { get; set; } = string.Empty;
public string VaultPath { get; set; } = string.Empty;
}
}