namespace Ringtoets.Piping.Data.Probabilistics { /// /// Class represents a specialized case of that has /// been shifted along the X-axis. /// public class ShiftedLognormalDistribution : LognormalDistribution { /// /// Gets or sets the shift applied to the log-normal distribution. /// public double Shift { get; set; } } }