Files
BeWoPlaner/BeWo/View/Report/FLSReport/FLSOverviewRow.cs
2016-06-27 01:45:38 +02:00

13 lines
299 B
C#

using System.Collections.Generic;
using BS.Shared.DataContracts;
namespace BeWo.View.Report.FLSReport
{
public class FLSOverviewRow
{
public List<FLSOverviewDetailRow> DetailRows { get; set; }
public FLSAnalysisRootDC FLSAnalysisRootDC { get; set; }
}
}