using Ringtoets.Common.Data.FailureMechanism; namespace Ringtoets.Common.Forms.PresentationObjects { /// /// Interface for a failure mechanism context which wraps an implementation of the /// interface. /// /// public interface IFailureMechanismContext where T : IFailureMechanism { /// /// Gets the wrapped in this presentation object. /// T WrappedData { get; } } }