Refactor code structure for improved readability and maintainability
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace TradingBot.Models;
|
||||
|
||||
public class AppSettings
|
||||
{
|
||||
public bool SimulationMode { get; set; } = true;
|
||||
public bool DesktopNotifications { get; set; } = false;
|
||||
public bool AutoStartBot { get; set; } = true;
|
||||
public bool ConfirmManualTrades { get; set; } = false;
|
||||
public int UpdateIntervalSeconds { get; set; } = 3;
|
||||
public string LogLevel { get; set; } = "Info";
|
||||
public bool SidebarCollapsed { get; set; } = false;
|
||||
}
|
||||
Reference in New Issue
Block a user