Files
BeWoPlaner/BeWo/View/Report/FLSReport/FLSOverviewConfig.cs
Christian 9c97d6fe79 CB Merge
2019-07-12 17:36:37 +02:00

39 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using BS.Shared;
using BS.Shared.DataContracts;
using BS.Shared.DataContracts.Compact;
namespace BeWo.View.Report.FLSReport
{
public class FLSOverviewConfig
{
public CompactCustomerDC Customer { get; set; }
public DateInterval DateInterval { get; set; }
public CompactEmployeeDC Employee { get; set; }
public DateTime EndDate { get; set; }
public List<long> GoalOids { get; set; }
public FLSReportType ReportType { get; set; }
//public List<ServiceCategoryDC> ServiceCategories { get; set; }
public List<ServiceDescriptionDC> ServiceDesciptions { get; set; }
public bool ShowChart { get; set; }
public bool ShowOnlyTotalRows { get; set; }
public bool ShowServiceRecords { get; set; }
public DateTime StartDate { get; set; }
public bool ShowOnlyMarker { get; set; }
public bool ShowEinheitInMinuten { get; set; }
}
}