mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:29:29 -06:00
29 lines
628 B
C#
29 lines
628 B
C#
namespace FileFlows.Nextcloud;
|
|
|
|
/// <summary>
|
|
/// The plugin settings for this plugin
|
|
/// </summary>
|
|
public class PluginSettings : IPluginSettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the next cloud URL
|
|
/// </summary>
|
|
[Text(1)]
|
|
[Required]
|
|
public string Url { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the username
|
|
/// </summary>
|
|
[Text(2)]
|
|
[Required]
|
|
public string Username { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the password
|
|
/// </summary>
|
|
[Text(3)]
|
|
[Required]
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|