Hide token using password box

This commit is contained in:
Tyrrrz
2023-07-09 18:13:41 +03:00
parent 51192425b7
commit c4137cf77e
7 changed files with 95 additions and 31 deletions

View File

@@ -38,8 +38,6 @@ public class DashboardViewModel : PropertyChangedBase
public string? Token { get; set; }
public bool IsTokenSet => !string.IsNullOrWhiteSpace(Token);
private IReadOnlyDictionary<Guild, IReadOnlyList<Channel>>? ChannelsByGuild { get; set; }
public IReadOnlyList<Guild>? AvailableGuilds => ChannelsByGuild?.Keys.ToArray();