14 lines
336 B
C#
14 lines
336 B
C#
namespace Pilz.Networking.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;
|
|
}
|
|
}
|