using Deltares.DamEngine.Data.Geometry; namespace Deltares.DamEngine.Calculators.Uplift { /// /// Data class containing information about uplift location and uplift factor /// public class UpliftLocationAndResult : GeometryPoint { public UpliftLocationAndResult() { UpliftFactor = 0; LayerWhereUpliftOccuresId = ""; } public UpliftLocationAndResult(double upliftFactor, string layerWhereUpliftOccuresId) { UpliftFactor = upliftFactor; LayerWhereUpliftOccuresId = layerWhereUpliftOccuresId; } public UpliftLocationAndResult(GeometryPoint point, double upliftFactor, string layerWhereUpliftOccuresId) { X = point.X; Y = point.Y; Z = point.Z; UpliftFactor = upliftFactor; LayerWhereUpliftOccuresId = layerWhereUpliftOccuresId; } public double? UpliftFactor { get; set; } public string LayerWhereUpliftOccuresId { get; set; } } }