using static Managing.Common.Enums; namespace Managing.Application.Abstractions.Models; public class UserSettingsDto { // Trading Configuration public decimal? LowEthAmountAlert { get; set; } public bool? EnableAutoswap { get; set; } public decimal? AutoswapAmount { get; set; } public int? MaxWaitingTimeForPositionToGetFilledSeconds { get; set; } public decimal? MaxTxnGasFeePerPosition { get; set; } public bool? IsGmxEnabled { get; set; } // Indicator Combo Configuration public Confidence? MinimumConfidence { get; set; } public decimal? TrendStrongAgreementThreshold { get; set; } public decimal? SignalAgreementThreshold { get; set; } public bool? AllowSignalTrendOverride { get; set; } public TradingExchanges? DefaultExchange { get; set; } }