//-----------------------------------------------------------------------
//
// Copyright (c) 2011 Deltares. All rights reserved.
//
// B.S.T.I.M. The
// tom.the@deltares.nl
// 02-11-2011
// PL Lines for Dupuit
//-----------------------------------------------------------------------
namespace Deltares.Dam.Data
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class DupuitPLLines
{
private List plLines = new List();
public List PLLines
{
get { return plLines; }
set { plLines = value; }
}
}
}