19 lines
378 B
C#
19 lines
378 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.APIs
|
|
{
|
|
public abstract class OcsApiBase
|
|
{
|
|
protected OcsApi Manager { get; init; }
|
|
|
|
protected OcsApiBase(OcsApi manager)
|
|
{
|
|
Manager = manager;
|
|
}
|
|
}
|
|
}
|