19 lines
488 B
C#
19 lines
488 B
C#
using AutoMapper;
|
|
using LeafWeb.Core.Entities;
|
|
|
|
namespace LeafWeb.WebCms.Models
|
|
{
|
|
public class LeafInputDataCurveViewModel
|
|
{
|
|
/// <summary>Sample CO2 concentration</summary>
|
|
//[ParseInfo(17, units: "umol/mol")]
|
|
public double? CO2S { get; set; }
|
|
|
|
public LeafInputDataCurveViewModel() {}
|
|
|
|
public LeafInputDataCurveViewModel(LeafInputDataCurve leafInputDataCurve)
|
|
{
|
|
Mapper.Map(leafInputDataCurve, this);
|
|
}
|
|
}
|
|
} |