Moving on

This commit is contained in:
2020-04-20 00:52:36 +02:00
parent f2cc603195
commit b73c401ff4
14 changed files with 71 additions and 217 deletions

View File

@@ -17,8 +17,11 @@ namespace Seenginx.Models
public string Permissions { get; set; }
public bool CanBeDeleted { get; set; } = true;
public string IsVisible { get; set; } = string.Empty;
public string IsSelected { get; set; } = string.Empty;
public void Hide() { IsVisible = "is-hidden"; }
public void Unhide() { IsVisible = string.Empty; }
public void Select() { IsSelected = "is-active"; }
public void Deselect() { IsSelected = string.Empty; }
}
}