20 lines
670 B
C#
20 lines
670 B
C#
using BS.Shared;
|
|
using System;
|
|
|
|
namespace BeWoPlanerMobil.Util.ReportUtils
|
|
{
|
|
[Serializable]
|
|
public class QuittierungsbelegsReportSettings
|
|
{
|
|
public int Year { get; set; }
|
|
public int Month { get; set; }
|
|
public int StartDay { get; set; }
|
|
public int EndDay { get; set; }
|
|
public long? CustomerOid { get; internal set; }
|
|
public long? TeamOid { get; internal set; }
|
|
public long? EmployeeOid { get; internal set; }
|
|
public long? OrganisationOid { get; internal set; }
|
|
public long? ServiceCategoryOid { get; internal set; }
|
|
public QBFilterEnum FilterEnum { get; internal set; }
|
|
}
|
|
} |