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

namespace Classes {
    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; }
    }
}