aw5600: added fields to interface
Some checks reported warnings
FarmMaps.Develop/CarbonLib/pipeline/head This commit is unstable

This commit is contained in:
2023-10-19 11:33:33 +02:00
parent 98db16fc7e
commit 51dee60e76
4 changed files with 12 additions and 7 deletions

View File

@@ -30,7 +30,7 @@ namespace CarbonService.Models
public SoilProperty SoilProperty { get; set; }
[Required]
public List<HistoricalCropData> HistoricalCropData { get; set; }
public List<GreenManure> GreenManures { get; set; }
public List<GreenManure> GreenManures { get; set; }
}
public class SoilProperty
@@ -38,6 +38,7 @@ namespace CarbonService.Models
public double? OM_Const { get; set; }
public double? Clay_Content { get; set; }
public bool? Depth10 { get; set; }
public int? Depth { get; set; }
}
public class OrgManureApplied
@@ -49,6 +50,7 @@ namespace CarbonService.Models
public List<OrganicManureType> OrganicManures { get; set; }
public double? CropYield { get { return (int?)yield; } set { yield = value; } }
public bool CropRes { get; set; }
public string Irrigation { get; set; }
}
public class OrganicManureType