using System.Collections.Generic;
using System.Linq;
namespace Wti.Data
{
///
/// Model for performing piping calculations.
///
public class PipingFailureMechanism
{
///
/// Initializes a new instance of the class.
///
public PipingFailureMechanism()
{
SurfaceLines = Enumerable.Empty();
PipingData = new PipingData();
}
///
/// Gets the available surface lines within the scope of the piping failure mechanism.
///
public IEnumerable SurfaceLines { get; private set; }
///
/// Gets the input data which contains input and output of a piping calculation
///
public PipingData PipingData { get; private set; }
}
}