We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07b393f commit 537e848Copy full SHA for 537e848
src/JsonApiDotNetCore/Models/JsonApiDocuments/ExposableData.cs
@@ -31,12 +31,12 @@ public bool ShouldSerializeData()
31
/// <summary>
32
/// Internally used for "single" primary data.
33
/// </summary>
34
- internal T SingleData { get; private set; }
+ public T SingleData { get; private set; }
35
36
37
/// Internally used for "many" primary data.
38
39
- internal List<T> ManyData { get; private set; }
+ public List<T> ManyData { get; private set; }
40
41
42
/// Internally used to indicate if the document's primary data is
0 commit comments