using Newtonsoft.Json; using Pilz.Networking.CloudProviders.Nextcloud.Ocs.Responses; namespace Pilz.Networking.CloudProviders.Nextcloud.Ocs; public class OcsApiResponse where TOcsResponse : IOcsResponse { [JsonProperty("ocs")] public TOcsResponse? Ocs { get; set; } }