13 lines
299 B
C#
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; }
|
|
}
|
|
} |