using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Nuclex.Networking.Gallery3.Responses { /// Tags returned as JSON by the gallery REST API public struct JsonTags { /// URL through which the tags can be queried public string Url; /// Tags assigned to the entity public string[] Members; } } // namespace Nuclex.Networking.Gallery3.Responses