aboutsummaryrefslogtreecommitdiff
path: root/Classes/Config.cs
blob: 6b1f7f5c1237869af17230c32bef870d2f8e2e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace Classes {
    /// <summary>
    /// Class to represent position for each piece of data in a class
    /// To be used in conjunction with article for each source
    /// </summary>
    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 PublishDate { get; set; }
    }
}