using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Nuclex.Networking.Gallery3.Responses { /// Response for an item query via the gallery REST API public struct JsonItem { /// The complete URL of the requested entity public string Url; /// Contains all informations about the entity itself public JsonEntity Entity; /// Child entities located inside this entity public string[] Members; /// Relationships of the entity public JsonRelationships Relationships; } } // namespace Nuclex.Networking.Gallery3.Responses