using System.Collections.ObjectModel; namespace decePubClient.Models { public class PublicCacheData { public IReadOnlyList Languages { get; set; } = new List(); public string LastPage { get; set; } public IReadOnlyDictionary Policies { get; set; } = new ReadOnlyDictionary(new Dictionary()); public string CurrentLanguageCode { get; set; } = "en-GB"; public bool NativeNotificationsEnabled { get; set; } = false; public short ThemeIndexColour { get; set; } = 25; public bool ThemeIsDarkMode { get; set; } = false; } }