Files
CarbonLib/CarbonLib/Models/CropPropertyModel.cs
Francisco Salas 0e8be57d43
All checks were successful
FarmMaps.Develop/CarbonLib/pipeline/head This commit looks good
aw7152: namespace change
2025-12-09 13:41:19 +01:00

17 lines
404 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CarbonLib.Carbon.Models
{
public class CropPropertyModel
{
public string Name { get; set; }
public double DM_content { get; set; }
public double FracR { get; set; }
public double C_input_CropRes { get; set; }
public double HarvestIndex { get; set; }
}
}