namespace MareSynchronos.MareConfiguration.Models; [Serializable] public class ServerStorage { public string ServerUri { get; set; } = string.Empty; public string ServerName { get; set; } = string.Empty; public List Authentications { get; set; } = new(); public Dictionary SecretKeys { get; set; } = new(); public bool FullPause { get; set; } = false; }