/// <summary>
		/// Initializes a new instance of the AutoUpdateChangeSummary class
		/// </summary>
		/// <param name="title">The title of the change</param>
		/// <param name="preview">A preview of the change</param>
		/// <param name="postedBy">Who posted the change</param>
		/// <param name="datePosted">The date it was posted</param>
		/// <param name="type">The type of change</param>
		public AutoUpdateChangeSummary(string id, string title, string preview, string postedBy, DateTime datePosted, AutoUpdateChangeTypes type)
		{
			_id = id;
			_title = title;
			this.Preview = preview;
			_postedBy = postedBy;
			_datePosted = datePosted;
			_type = type;
		}
 /// <summary>
 /// Initializes a new instance of the AutoUpdateChangeSummary class
 /// </summary>
 /// <param name="title">The title of the change</param>
 /// <param name="preview">A preview of the change</param>
 /// <param name="postedBy">Who posted the change</param>
 /// <param name="datePosted">The date it was posted</param>
 /// <param name="type">The type of change</param>
 public AutoUpdateChangeSummary(string id, string title, string preview, string postedBy, DateTime datePosted, AutoUpdateChangeTypes type)
 {
     _id          = id;
     _title       = title;
     this.Preview = preview;
     _postedBy    = postedBy;
     _datePosted  = datePosted;
     _type        = type;
 }