namespace Deltares.AssessmentMechanism
{
///
/// Classes implementing this interface have a property which can be invoked to retrieve it from an instance.
///
public interface IHasDikeLocationInfo
{
///
/// Gets the associated to this instance.
///
DikeLocationInfo DikeLocationInfo { get; }
}
}