This commit is contained in:
2021-06-15 17:55:27 +00:00
parent 05d697485e
commit 640c9018e8
5 changed files with 20 additions and 16 deletions

View File

@@ -46,36 +46,36 @@ namespace AyaNova.Models
public string CustomerServiceRequestInfoHTML { get; set; }
public bool CustomerAllowCSR { get; set; }
public List<string> CustomerAllowCSRInTags { get; set; }
public List<string> CustomerAllowCSROutTags { get; set; }
public List<string> CustomerAllowCSRInTags { get; set; } = new List<string>();
public List<string> CustomerAllowCSROutTags { get; set; } = new List<string>();
public bool CustomerAllowViewWO { get; set; }
public List<string> CustomerAllowViewWOInTags { get; set; }
public List<string> CustomerAllowViewWOOutTags { get; set; }
public List<string> CustomerAllowViewWOInTags { get; set; } = new List<string>();
public List<string> CustomerAllowViewWOOutTags { get; set; } = new List<string>();
public bool CustomerAllowWOWiki { get; set; }
public List<string> CustomerAllowWOWikiInTags { get; set; }
public List<string> CustomerAllowWOWikiOutTags { get; set; }
public List<string> CustomerAllowWOWikiInTags { get; set; } = new List<string>();
public List<string> CustomerAllowWOWikiOutTags { get; set; } = new List<string>();
public bool CustomerAllowUserSettings { get; set; }
public List<string> CustomerAllowUserSettingsInTags { get; set; }
public List<string> CustomerAllowUserSettingsOutTags { get; set; }
public List<string> CustomerAllowUserSettingsInTags { get; set; } = new List<string>();
public List<string> CustomerAllowUserSettingsOutTags { get; set; } = new List<string>();
public bool CustomerAllowNotifyServiceImminent { get; set; }
public List<string> CustomerAllowNotifyServiceImminentInTags { get; set; }
public List<string> CustomerAllowNotifyServiceImminentOutTags { get; set; }
public List<string> CustomerAllowNotifyServiceImminentInTags { get; set; } = new List<string>();
public List<string> CustomerAllowNotifyServiceImminentOutTags { get; set; } = new List<string>();
public bool CustomerAllowNotifyCSRAccepted { get; set; }
public List<string> CustomerAllowNotifyCSRAcceptedInTags { get; set; }
public List<string> CustomerAllowNotifyCSRAcceptedOutTags { get; set; }
public List<string> CustomerAllowNotifyCSRAcceptedInTags { get; set; } = new List<string>();
public List<string> CustomerAllowNotifyCSRAcceptedOutTags { get; set; } = new List<string>();
public bool CustomerAllowNotifyCSRRejected { get; set; }
public List<string> CustomerAllowNotifyCSRRejectedInTags { get; set; }
public List<string> CustomerAllowNotifyCSRRejectedOutTags { get; set; }
public List<string> CustomerAllowNotifyCSRRejectedInTags { get; set; } = new List<string>();
public List<string> CustomerAllowNotifyCSRRejectedOutTags { get; set; } = new List<string>();
public bool CustomerAllowNotifyWorkorderCreated { get; set; }
public List<string> CustomerAllowNotifyWorkorderCreatedInTags { get; set; }
public List<string> CustomerAllowNotifyWorkorderCreatedOutTags { get; set; }
public List<string> CustomerAllowNotifyWorkorderCreatedInTags { get; set; } = new List<string>();
public List<string> CustomerAllowNotifyWorkorderCreatedOutTags { get; set; } = new List<string>();