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 comment attached to a gallery entity public class Comment : Entity { /// 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 Comment(IGalleryConnection connection, ref Responses.JsonItem jsonItem) : base(connection, ref jsonItem) { } } } // namespace Nuclex.Networking.Gallery3