See More

using Newtonsoft.Json.Linq; namespace JSONAPI.Payload { ///

/// Default implementation of IPayload /// public class Payload : IPayload { public object PrimaryData { get; set; } public JObject Metadata { get; set; } } }