Files
BeWoPlaner/BeWo/View/Report/FLSReport/FLSOverviewConfig.cs

41 lines
1.1 KiB
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
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; }
2019-07-12 17:36:37 +02:00
2025-04-17 01:11:16 +02:00
public bool ShowOnlyDeleted { get; set; }
2019-07-12 17:36:37 +02:00
public bool ShowEinheitInMinuten { get; set; }
}
2016-06-27 01:45:38 +02:00
}