19 lines
357 B
C#
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;
|
|
}
|
|
}
|
|
}
|