You have created fields, not properties
To turn them into properties, adjust your code like this
public class NewsItem
{
public string Link { get; set; }
public string Title { get; set; }
public NewsItem()
{
this.Link = string.Empty;
this.Title = string.Empty;
}
}