using System; namespace Aggregator.Classes { /// /// Class to represent position for each piece of data in a class /// To be used in conjunction with article for each source /// public class Config { public string Source { get; set; } public int Title { get; set; } public int Description { get; set; } public int ImageLink { get; set; } public int ArticleLink { get; set; } public int Author { get; set; } public int PublishDate { get; set; } } }