Add CurveId Selection for charter

This commit is contained in:
2016-04-25 11:26:53 -04:00
parent 74641c5cf1
commit 8c218cda48
14 changed files with 2747 additions and 10 deletions
@@ -0,0 +1,17 @@
using System.Collections.Generic;
namespace LeafWeb.Web.ViewModels.LeafCharter
{
public class LeafCharterViewModel
{
public int LeafInputId { get; set; }
public string CurveId { get; set; }
public IEnumerable<string> AvailableCurveId { get; set; }
}
public class LeafCharterQueryViewModel
{
public int LeafInputId { get; set; }
public string CurveId { get; set; }
}
}