rename OCS to Ocs

This commit is contained in:
2023-10-02 15:40:26 +02:00
parent fc50ebb3d5
commit 459660c35a
26 changed files with 29 additions and 29 deletions

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses
namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{
public interface IOcsResponse
{

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses
namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{
public interface IOcsResponseData
{

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses
namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{
public interface IOcsResponseMeta
{

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses
namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{
public class OcsResponse<TMeta, TData> : IOcsResponse where TMeta : IOcsResponseMeta where TData : IOcsResponseData
{

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses
namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{
public class OcsResponseData : IOcsResponseData
{

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses
namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{
public class OcsResponseDataArray<TEntry> : List<TEntry>, IOcsResponseData where TEntry : OcsResponseDataEntry
{

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses
namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{
public class OcsResponseDataEntry
{

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses
namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses
{
public class OcsResponseMeta : IOcsResponseMeta
{