Files
PlantBox/PlantBox.Client/PlantBox.Client/Models/HistoricEntry.cs
2019-04-22 14:12:49 +02:00

19 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PlantBox.Client.Models
{
public class HistoricEntry
{
public DateTime Date { get; }
public double Value { get; }
public HistoricEntry(DateTime date, double value)
{
Date = date;
Value = value;
}
}
}