aboutsummaryrefslogtreecommitdiff
path: root/Aggregator/Classes
diff options
context:
space:
mode:
authorAryadev Chavali <aryadevchavali1@gmail.com>2019-02-04 00:08:51 +0000
committerAryadev Chavali <aryadevchavali1@gmail.com>2019-02-04 00:08:51 +0000
commit47e8e85487d02bd3ce85d016eb251df48436b159 (patch)
treefe90f2eb61651d0bb55b23d0726525e020c841dc /Aggregator/Classes
parentcca09f25129664758df85e609208388e53e4ccda (diff)
downloadnewsaggregator-47e8e85487d02bd3ce85d016eb251df48436b159.tar.gz
newsaggregator-47e8e85487d02bd3ce85d016eb251df48436b159.tar.bz2
newsaggregator-47e8e85487d02bd3ce85d016eb251df48436b159.zip
Added source property to config because configs will be program life time
based objects and thus the main characteristic for Article information
Diffstat (limited to 'Aggregator/Classes')
-rw-r--r--Aggregator/Classes/Config.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Aggregator/Classes/Config.cs b/Aggregator/Classes/Config.cs
index 0641dbf..ca801e7 100644
--- a/Aggregator/Classes/Config.cs
+++ b/Aggregator/Classes/Config.cs
@@ -6,6 +6,7 @@ namespace Aggregator.Classes {
/// 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; }