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

24 lines
741 B
C#

using Knoks.Core.Entities.Interfaces;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Knoks.Core.Entities
{
public class KnokRate: IApiResult
{
public PotentialProfit PotentialProfit { get; set; }
public decimal PotentialProfitValue { get; set; }
public decimal Entry { get; set; }
public decimal Exit { get; set; }
//public decimal EntryToExit { get; set; }
public decimal EntryToSL { get; set; }
public decimal Duration { get; set; }
public decimal Total { get; set; }
public decimal Price { get; set; }
public decimal PriceUSD { get; set; }
}
}