Files
amacocian ab1b604aec Code cleanup (#1026)
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props

* Cleanup more messages

* Fix more messages

* Fix build issues
2025-06-29 17:32:52 +02:00

14 lines
435 B
C#

namespace Daybreak.Shared.Models.Trade;
public sealed class TradeAlert : ITradeAlert
{
public string Id { get; set; } = Guid.NewGuid().ToString();
public string Name { get; set; } = string.Empty;
public bool Enabled { get; set; }
public string? MessageCheck { get; set; }
public bool MessageRegexCheck { get; set; }
public string? SenderCheck { get; set; }
public bool SenderRegexCheck { get; set; }
}