mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-14 04:19:24 +00:00
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props * Cleanup more messages * Fix more messages * Fix build issues
17 lines
543 B
C#
17 lines
543 B
C#
namespace Daybreak.Shared.Models.Trade;
|
|
public sealed class QuoteAlert : ITradeAlert
|
|
{
|
|
public string Id { get; set; } = Guid.NewGuid().ToString();
|
|
public string Name { get; set; } = string.Empty;
|
|
public bool Enabled { get; set; }
|
|
|
|
public int ItemId { get; set; }
|
|
public TraderQuoteType TraderQuoteType { get; set; }
|
|
|
|
public int UpperPriceTarget { get; set; }
|
|
public bool UpperPriceTargetEnabled { get; set; }
|
|
|
|
public int LowerPriceTarget { get; set; }
|
|
public bool LowerPriceTargetEnabled { get; set; }
|
|
}
|