using System.Collections.Generic; using DevExpress.XtraScheduler; namespace BeWoPlanerMobil.Models { public class DevExpressSchedulerSessionModel : BaseSessionModel { public List SelectedCustomerOids { get; set; } public List SelectedEmployeeOids { get; set; } public List SelectedResourceOids { get; set; } public SchedulerViewType CurrentSchedulerViewType { get; set; } public override void ResetValues() { base.ResetValues(); SelectedCustomerOids = null; SelectedEmployeeOids = null; SelectedResourceOids = null; } } }