using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace LeafWeb.Core.Models
{
///
/// The file 'cntrlcomparison.csv', which is in comma-separated-value format, contains outputs from PISCAL that
/// facilitates examination of how well the fitting is.
///
public class CntrlComparison
{
public virtual IEnumerable FittingInfo { get; set; }
public virtual IEnumerable PhotosyntheticInfo { get; set; }
}
}