17 lines
404 B
C#
17 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KLHZ.Trader.Core.Math.Declisions.Dtos
|
|
{
|
|
public class ConvolutionResult
|
|
{
|
|
public decimal Sum { get; set; }
|
|
public decimal Value { get;set; }
|
|
public int Shift { get; set; }
|
|
public decimal Leverage { get; set; }
|
|
}
|
|
}
|