FIC_Solar/SolarPower/Models/AnalysisInverter.cs
Kai 8664bda0d5 1. bug fix
2. 畫面調整
3.選單調整
2021-07-20 10:02:59 +08:00

24 lines
573 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Models
{
public class AnalysisInverter
{
public List<string> XAxis { get; set; } //時間
public List<string> MultipleYaxes { get; set; } //Y軸名稱
public Dictionary<string, List<InverterHistoryInfo>> Series { get; set; } //數組
}
public class InverterHistoryInfo
{
public string Time { get; set; }
public string Yaxes { get; set; }
public double Value { get; set; }
}
}