Skip to content
This repository was archived by the owner on Mar 29, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/OpenPr0gramm/Response/Pr0grammResponse.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
using Newtonsoft.Json;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;

using OpenPr0gramm.Json;

using System;
using System.Collections.Generic;

namespace OpenPr0gramm
{
Expand All @@ -11,5 +15,8 @@ public class Pr0grammResponse
public object Cache { get; private set; }
public int RT { get; private set; }
public int QC { get; private set; }

[JsonExtensionData]
public IDictionary<string, JToken> ExtraData { get; private set; }
}
}