Add backload for multiple file upload
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user