Class EmbeddedResponse<T>
Represents an Embedded JSON response with a custom content.
public record EmbeddedResponse<T> : IEquatable<EmbeddedResponse<T>>
Type Parameters
TType of the content.
- Inheritance
-
EmbeddedResponse<T>
- Implements
- Inherited Members
Constructors
EmbeddedResponse(T)
Represents an Embedded JSON response with a custom content.
public EmbeddedResponse(T Content)
Parameters
ContentTThe embedded content.
Properties
Content
The embedded content.
[JsonPropertyName("_embedded")]
public T Content { get; init; }
Property Value
- T