aw5600: added fields to interface
All checks were successful
FarmMaps.Develop/CarbonLib/pipeline/head This commit looks good

This commit is contained in:
2023-10-19 16:12:02 +02:00
parent 4f21c4d0d8
commit 7f5f676fff
3 changed files with 4 additions and 1 deletions

View File

@@ -36,6 +36,7 @@ namespace CarbonService.Models
public class SoilProperty
{
public double? OM_Const { get; set; }
public string OM_Type { get; set; }
public double? Clay_Content { get; set; }
public bool? Depth10 { get; set; }
public int? Depth { get; set; }

View File

@@ -76,8 +76,10 @@ namespace FarmMapsAPI.Carbon.Models
public class SoilPropertyFarmMaps
{
public double? OM_Const { get; set; }
public string OM_Type { get; set; }
public double? Clay_Content { get; set; }
public bool Depth10 { get; set; }
public int? Depth { get; set; }
}
public class GreenManureTypeFarmMaps