18 lines
443 B
C#
18 lines
443 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 Harmonic
|
|
{
|
|
public TimeSpan Period { get; set; }
|
|
public float Magnitude { get; set; }
|
|
public float Real { get; set; }
|
|
public float Imaginary { get; set; }
|
|
public float Phase { get; set; }
|
|
}
|
|
}
|