using System; using System.Collections.Generic; using System.Linq; using System.Text; using Nuclex.Networking.Gallery3.Requests; using System.Web.Script.Serialization; using System.Web; using System.Diagnostics; namespace Nuclex.Networking.Gallery3 { /// Represents a movie managed by gallery public class Movie : Visual { /// Initializes a new gallery item /// /// Connection holding the resources needed to issue requests to /// the gallery installation /// /// /// The JSON data returned by the gallery REST API about this entity /// internal Movie(IGalleryConnection connection, ref Responses.JsonItem jsonItem) : base(connection, ref jsonItem) { } } } // namespace Nuclex.Networking.Gallery3