Reformating charting, add DataError message

This commit is contained in:
2016-05-09 11:46:32 -04:00
parent 1ba8f24b10
commit aca7157663
11 changed files with 616 additions and 24 deletions
+18
View File
@@ -0,0 +1,18 @@
using System.Collections.Generic;
namespace LeafWeb.Web.ViewModels.Chart
{
public class ChartViewModel
{
public int LeafInputId { get; set; }
public string CurveId { get; set; }
public IEnumerable<string> AvailableCurveId { get; set; }
public string LeafInputIdentifier { get; set; }
}
public class ChartQueryViewModel
{
public int LeafInputId { get; set; }
public string CurveId { get; set; }
}
}