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(); } /// /// Gets the available surface lines within the scope of the piping failure mechanism. /// public IEnumerable SurfaceLines { get; private set; } } }