2025-09-09 00:44:55 +02:00
using System ;
using System.Collections.Generic ;
namespace BeWoPlanerMobil.Models
{
2026-02-04 18:03:01 +01:00
/// <summary>
/// Im SessionModel werden Oids in der Session gespeichert, um dann beim Neuladen (z.B. nach einer Post-Anfrage) ausgewählte Objekte wieder aus der Datenbank holen zu können.
/// </summary>
2025-09-09 00:44:55 +02:00
[Serializable]
public abstract class BaseSessionModel
{
2026-04-22 14:52:39 +02:00
public int AiVoiceMode { get ; set ; }
2025-09-09 00:44:55 +02:00
public Dictionary < string , bool > Collapsibles2IsShown { get ; set ; } = new Dictionary < string , bool > ( ) ;
public virtual void ResetValues ( )
{
Collapsibles2IsShown = new Dictionary < string , bool > ( ) ;
}
}
}