more work on api & rename to Pilz.Net
This commit is contained in:
32
Pilz.Net.CloudProviders.Nextcloud/NextcloudLogin.cs
Normal file
32
Pilz.Net.CloudProviders.Nextcloud/NextcloudLogin.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using Pilz.Net.CloudProviders.Nextcloud.Client.LoginFlowV2.Ocs;
|
||||
|
||||
namespace Pilz.Net.CloudProviders.Nextcloud;
|
||||
|
||||
public class NextcloudLogin
|
||||
{
|
||||
/// <summary>
|
||||
/// The server url the login credentials are for.
|
||||
/// </summary>
|
||||
public string? Server { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The login name (username or password) used for the login.
|
||||
/// </summary>
|
||||
public string? LoginName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The app password that has been generated.
|
||||
/// </summary>
|
||||
public string? AppPassword { get; set; }
|
||||
|
||||
public NextcloudLogin()
|
||||
{
|
||||
}
|
||||
|
||||
public NextcloudLogin(OcsResponseLoginFlowV2Credentials response)
|
||||
{
|
||||
Server = response.Server;
|
||||
LoginName = response.LoginName;
|
||||
AppPassword = response.AppPassword;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user