more work on api & rename to Pilz.Net
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace Pilz.Net.CloudProviders.Nextcloud.OCS;
|
||||
|
||||
public struct OcsApiAuthCredentials
|
||||
{
|
||||
public string LoginName { get; set; }
|
||||
public string AppPassword { get; set; }
|
||||
|
||||
public OcsApiAuthCredentials(string loginName, string appPassword)
|
||||
{
|
||||
LoginName = loginName;
|
||||
AppPassword = appPassword;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user