Knocks/BackEnd/Knoks.Core/Entities/ExchangeStart.cs

28 lines
593 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace Knoks.Core.Entities
{
public class ExchangeStart
{
public decimal EntryFrom { get; set; }
public decimal EntryTo { get; set; }
public decimal? ExitFrom { get; set; }
public decimal? ExitTo { get; set; }
public decimal? StopLoss { get; set; }
public short Precision { get; set; }
}
public class ExchangeStartValues
{
public decimal EntryFrom { get; set; }
public decimal EntryTo { get; set; }
}
}