diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 00:08:51 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 00:08:51 +0000 |
commit | 47e8e85487d02bd3ce85d016eb251df48436b159 (patch) | |
tree | fe90f2eb61651d0bb55b23d0726525e020c841dc /Aggregator/Classes | |
parent | cca09f25129664758df85e609208388e53e4ccda (diff) | |
download | newsaggregator-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.cs | 1 |
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; } |