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

33 lines
840 B
C#

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