This commit is contained in:
2022-06-30 17:53:43 +00:00
parent 0c2a4e50e3
commit a2faf5f9db
3 changed files with 13 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ namespace AyaNovaQBI
public string Name { get; set; }
public bool Active { get; set; }//integration apps should always check if this is true before working or not and give appropriate error if turned off
public string IntegrationData { get; set; }//foreign object data store for entire integration, can be used for custom data, unused by any AyaNova add-on's, expect json or xml or some other text value here
public string IntegrationData { get; set; } = String.Empty;//foreign object data store for entire integration, can be used for custom data, unused by any AyaNova add-on's, expect json or xml or some other text value here
public List<IntegrationItem> Items { get; set; } = new List<IntegrationItem>();