mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-21 00:39:35 -06:00
15 lines
314 B
C#
15 lines
314 B
C#
namespace FileFlows.Pushbullet;
|
|
|
|
/// <summary>
|
|
/// The plugin settings for this plugin
|
|
/// </summary>
|
|
public class PluginSettings : IPluginSettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the API Token
|
|
/// </summary>
|
|
[Text(2)]
|
|
[Required]
|
|
public string ApiToken { get; set; } = string.Empty;
|
|
}
|