18 lines
456 B
C#
18 lines
456 B
C#
using Newtonsoft.Json;
|
|
using Pilz.Networking.CloudProviders.Nextcloud.OCS.Responses;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Pilz.Networking.CloudProviders.Nextcloud.OCS
|
|
{
|
|
public class OcsApiResponse<TOcsResponse> where TOcsResponse : IOcsResponse
|
|
{
|
|
[JsonProperty("ocs")]
|
|
public TOcsResponse? Ocs { get; set; }
|
|
}
|
|
}
|