using BlazorZXingJs; using System.Collections.ObjectModel; namespace decePubClient.Models { public class PublicCacheData { public IReadOnlyList Languages { get; set; } = new List(); public List QrCodeDevices { get; set; } = new(); public string LastPage { get; set; } public string CurrentSubPage { get; set; } public PageSettings PageSettings { get; set; } = new(); public bool ShowLogs { get; set; } = false; public IReadOnlyDictionary Policies { get; set; } = new ReadOnlyDictionary(new Dictionary()); } }