14 lines
329 B
C#
14 lines
329 B
C#
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;
|
|
}
|
|
}
|