decePubClient/Models/PublicCacheData.cs

18 lines
624 B
C#
Raw Permalink Normal View History

2022-12-15 20:03:40 +01:00
using BlazorZXingJs;
using System.Collections.ObjectModel;
2022-02-14 01:51:37 +01:00
namespace decePubClient.Models
{
public class PublicCacheData
{
public IReadOnlyList<ViewLanguage> Languages { get; set; } = new List<ViewLanguage>();
2022-12-15 20:03:40 +01:00
public List<MediaDeviceInfo> QrCodeDevices { get; set; } = new();
2022-02-14 01:51:37 +01:00
public string LastPage { get; set; }
2022-12-15 20:03:40 +01:00
public string CurrentSubPage { get; set; }
public PageSettings PageSettings { get; set; } = new();
public bool ShowLogs { get; set; } = false;
2022-02-14 01:51:37 +01:00
public IReadOnlyDictionary<string, string> Policies { get; set; } = new ReadOnlyDictionary<string, string>(new Dictionary<string, string>());
}
}