using Knoks.Core.Logic.Interfaces; namespace Knoks.SignalsTracking { public class SignalsTrackerSettings: IKnokFeedsSettings { public int RefreshDataIntervalMs { get; set; } public int ProcessKnoksIntervalMs { get; set; } public decimal KnokerWinRate { get; set; } public decimal UserRefundRate { get; set; } public int KnokFeedExpirationHours { get; set; } } }