// Copyright (C) Stichting Deltares 2017. All rights reserved. // // This file is part of the DAM Engine. // // The DAM Engine is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using Deltares.DamEngine.Data.General.TimeSeries; using Deltares.DamEngine.Data.RWScenarios; namespace Deltares.DamEngine.Data.General.Results { public class LocationResult { private TimeSerie stabilityTimeSerie = new TimeSerie(); private TimeSerie pipingTimeSerie = new TimeSerie(); private RWScenariosResult rwScenariosResult; private RWSchematizationFactorsResult schematizationFactorsResult; public virtual TimeSerie StabilityTimeSerie { get { return stabilityTimeSerie; } set { stabilityTimeSerie = value; } } public TimeSerie PipingTimeSerie { get { return pipingTimeSerie; } set { pipingTimeSerie = value; } } public virtual RWScenariosResult RWScenariosResult { get { return rwScenariosResult; } set { rwScenariosResult = value; } } public RWSchematizationFactorsResult SchematizationFactorsResult { get { return schematizationFactorsResult; } set { schematizationFactorsResult = value; } } } }