namespace FileFlows.Nextcloud;
///
/// The plugin settings for this plugin
///
public class PluginSettings : IPluginSettings
{
///
/// Gets or sets the next cloud URL
///
[Text(1)]
[Required]
public string Url { get; set; } = string.Empty;
///
/// Gets or sets the username
///
[Text(2)]
[Required]
public string Username { get; set; } = string.Empty;
///
/// Gets or sets the password
///
[Text(3)]
[Required]
public string Password { get; set; } = string.Empty;
}