Many updates

This commit is contained in:
2020-07-06 01:00:48 +02:00
parent 56f78393a8
commit 73a6125faf
10 changed files with 168 additions and 90 deletions

View File

@@ -7,7 +7,6 @@ namespace Seenginx.Models
public string FullPath { get; set; }
public string Folder { get; set; }
public string Name { get; set; }
public string DraftName { get; set; }
public string Body { get; set; }
public string DraftBody { get; set; }
public string Permissions { get; set; }
@@ -15,7 +14,7 @@ namespace Seenginx.Models
public string[] Owners { get; set; }
public string IsVisible { get; set; } = string.Empty;
public string IsSelected { get; set; } = string.Empty;
public bool HasDraft => !string.IsNullOrEmpty(DraftName);
public bool HasDraft => !string.IsNullOrEmpty(DraftBody);
public bool CanBeDeleted { get; set; } = true;
public void Hide() { IsVisible = "is-hidden"; }