﻿function Article(pID, pTitle, pDesc, pThumbURL, pLink, pDate) {
    this.ID = pID;
    this.Title = pTitle;
    this.Description = pDesc;
    this.Link = pLink;
    this.ThumbURL = pThumbURL;
    this.Date = pDate;
}
