Files
CarbonLib/Models/SoilPropertyType.cs
Francisco Salas 597f42001b
All checks were successful
FarmMaps.Develop/CarbonLib/pipeline/head This commit looks good
aw3567: added 10cm depth measurement
2022-02-25 11:41:32 +01:00

41 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace FarmMapsAPI.Carbon.Models
{
public class SoilPropertyType
{
public double OM_Cont { get; set; }
public double OM_Corr { get; set; }
public double Bulk_Density { get; set; }
public double Clay_Content { get; set; }
public double Depth { get; set; }
public bool Depth10 { get; set; }
}
struct SoilTypePropertyKey
{
public string SoilType { get; set; }
public string SoilProperty{ get; set; }
public override int GetHashCode()
{
return SoilType.GetHashCode() ^ SoilProperty.GetHashCode();
}
public override bool Equals(object obj)
{
if (obj is SoilTypePropertyKey)
{
SoilTypePropertyKey compositeKey = (SoilTypePropertyKey)obj;
return ((this.SoilType == compositeKey.SoilType) &&
(this.SoilProperty == compositeKey.SoilProperty));
}
return false;
}
}
}