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 GoalOids { get; set; } public FLSReportType ReportType { get; set; } //public List ServiceCategories { get; set; } public List 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; } } }