First Nginx push

This commit is contained in:
2020-04-13 23:58:26 +02:00
parent adcd20c09e
commit d5c138fa5a
14 changed files with 166 additions and 19 deletions

View File

@@ -6,5 +6,15 @@ namespace Seenginx.Models
{
public class ConfigFile
{
public string Folder { get; set; }
public string Name { get; set; }
public bool HasDraft => !string.IsNullOrEmpty(DraftName);
public string DraftName { get; set; }
public string OriginalBody { get; set; }
public string ChangedBody { get; set; }
public DateTime LastUpdated { get; set; }
public string[] Owners { get; set; }
public string Permissions { get; set; }
public bool CanBeDeleted { get; set; } = true;
}
}