Add backload for multiple file upload

This commit is contained in:
2016-01-27 11:06:47 -05:00
parent 2c73fb6883
commit 37a7a24436
261 changed files with 28994 additions and 96 deletions
+7 -3
View File
@@ -1,4 +1,5 @@
using LeafWeb.Core.Parsers;
using System.ComponentModel.DataAnnotations;
using LeafWeb.Core.Parsers;
using LeafWeb.Core.Utility;
namespace LeafWeb.Core.Models
@@ -8,6 +9,11 @@ namespace LeafWeb.Core.Models
/// </summary>
public class LeafInputPhotosynthetic
{
[Key]
public int LeafInputPhotosyntheticId { get; set; }
public virtual LeafInputInfo LeafInputInfo { get; set; }
/// <summary>chloroplastic CO2 photocompensation point</summary>
/// <remarks>must be positive</remarks>
[ParseInfo(1, alternateTitle:"Gamma*", units: "Pa")]
@@ -36,7 +42,5 @@ namespace LeafWeb.Core.Models
/// <summary>internal (also known as mesophyll) conductance</summary>
[ParseInfo(6, units: "umol/m2/s/Pa")]
public double gi { get; set; }
public virtual LeafInput LeafInput { get; set; }
}
}