FF-1493: Added ability to save images to the file log

This commit is contained in:
John Andrews
2024-04-24 17:57:38 +12:00
parent 478cf768c6
commit 583f2a725e
21 changed files with 131 additions and 54 deletions
+2 -2
View File
@@ -10,12 +10,12 @@ public class PluginSettings : IPluginSettings
/// </summary>
[Text(1)]
[Required]
public string UserKey { get; set; }
public string UserKey { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the API Token
/// </summary>
[Text(2)]
[Required]
public string ApiToken { get; set; }
public string ApiToken { get; set; } = string.Empty;
}