Files
BeWoPlaner/BeWoPlanerMobil/Models/DevToolsSessionModel.cs
2026-06-29 13:45:41 +02:00

117 lines
5.0 KiB
C#

using System.Collections.Generic;
namespace BeWoPlanerMobil.Models
{
public class DevToolsSessionModel : BaseSessionModel
{
public List<long> UserGroupOids { get; set; }
public List<long> UserOids { get; set; }
public MandatorSettings MandatorSettings { get; set; }
public bool HideServiceRecordInsertedByAndInsertedOn { get; set; }
public bool IsEndDateVisible { get; set; }
public bool IsServiceRecordNoticeMandatory { get; set; }
public bool IsZeiterfassDateNormal { get; set; }
public bool SetStartTimeToEndTimeAfterSave { get; set; }
public bool ShowAdditionalService { get; set; }
public bool ShowAnnualReport { get; set; }
public bool ShowArbeitszeiten { get; set; }
public bool ShowBetrag { get; set; }
public bool ShowChat { get; set; }
public bool ShowCustomerDistanceFields { get; set; }
public bool ShowDatevFields { get; set; }
public bool ShowDienstplanung { get; set; }
public bool ShowDistanceFields { get; set; }
public bool ShowEmployeeSignature { get; set; }
public bool ShowHilfeplanBezeichnung { get; set; }
public bool ShowHilfeplanStatistikReport { get; set; }
public bool ShowInfoButtonInCalender { get; set; }
public bool ShowKlientenBetreuungszeiten { get; set; }
public bool ShowMarker { get; set; }
public bool ShowMedication { get; set; }
public bool ShowMultipleResourceColors { get; set; }
public bool ShowOnlyMySupportConcepts { get; set; }
public bool ShowOwnChatSettings { get; set; }
public bool ShowPivotGrid { get; set; }
public bool ShowRoundedDurationInEmployeeAnalysis { get; set; }
public bool ShowRtfTextfield { get; set; }
public bool ShowScheduler { get; set; }
public bool ShowServicesOverviewHalfOrWholeMonth { get; set; }
public bool ShowSignature { get; set; }
public bool ShowTeamNews { get; set; }
public bool ShowUrlaubsplanung { get; set; }
public bool ShowWohnheime { get; set; }
public bool AllowStorno { get; set; }
public bool DontShowSpitzabrechnung { get; set; }
public bool IsOnlyYearMonthVisible { get; set; }
public bool IsPasswordSecurityActiv { get; set; }
public bool PrinterSettingsUseLandscape { get; set; }
public bool PrinterSettingsUseMargins { get; set; }
public bool PrinterSettingsUsePaperKind { get; set; }
public bool ShowResources { get; set; }
public int MaxDaysEditServiceRecordsAllowed { get; set; }
public int ZeiterfassungsSchwellwert { get; set; }
public int AnzTageZeiterfassErfolgt { get; set; }
public int DienstplanungStandardZeilenAnzahl { get; set; }
public int HilfeplanAuslaufAuswahl { get; set; }
public int TimeUntilUILock { get; set; }
public int EinheitZeiterfassung { get; set; }
public override void ResetValues()
{
base.ResetValues();
HideServiceRecordInsertedByAndInsertedOn = false;
IsEndDateVisible = false;
IsServiceRecordNoticeMandatory = false;
IsZeiterfassDateNormal = false;
SetStartTimeToEndTimeAfterSave = false;
ShowAdditionalService = false;
ShowAnnualReport = false;
ShowArbeitszeiten = false;
ShowBetrag = false;
ShowChat = false;
ShowCustomerDistanceFields = false;
ShowDatevFields = false;
ShowDienstplanung = false;
ShowDistanceFields = false;
ShowEmployeeSignature = false;
ShowHilfeplanBezeichnung = false;
ShowHilfeplanStatistikReport = false;
ShowInfoButtonInCalender = false;
ShowKlientenBetreuungszeiten = false;
ShowMarker = false;
ShowMedication = false;
ShowMultipleResourceColors = false;
ShowOnlyMySupportConcepts = false;
ShowOwnChatSettings = false;
ShowPivotGrid = false;
ShowRoundedDurationInEmployeeAnalysis = false;
ShowRtfTextfield = false;
ShowScheduler = false;
ShowServicesOverviewHalfOrWholeMonth = false;
ShowSignature = false;
ShowTeamNews = false;
ShowUrlaubsplanung = false;
ShowWohnheime = false;
AllowStorno = false;
DontShowSpitzabrechnung = false;
IsOnlyYearMonthVisible = false;
IsPasswordSecurityActiv = false;
PrinterSettingsUseLandscape = false;
PrinterSettingsUseMargins = false;
PrinterSettingsUsePaperKind = false;
ShowResources = false;
MaxDaysEditServiceRecordsAllowed = 0;
ZeiterfassungsSchwellwert = 0;
AnzTageZeiterfassErfolgt = 0;
DienstplanungStandardZeilenAnzahl = 0;
HilfeplanAuslaufAuswahl = 0;
TimeUntilUILock = 0;
EinheitZeiterfassung = 0;
}
}
}