aboutsummaryrefslogtreecommitdiff
path: root/Aggregator/Classes/Config.cs
blob: 995d2788465a3d4c817217080aaac038db7bc7fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 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; }
    }
}