aboutsummaryrefslogtreecommitdiff
path: root/Aggregator/Classes/Config.cs
diff options
context:
space:
mode:
authorAryadev Chavali <aryadevchavali1@gmail.com>2019-02-04 11:36:48 +0000
committerAryadev Chavali <aryadevchavali1@gmail.com>2019-02-04 11:36:48 +0000
commitee874ec782f750cc6c2610818b8a276c21fed99e (patch)
tree05b0e03c5fff25b2715d433514cb54429a725af1 /Aggregator/Classes/Config.cs
parent95e75992bca29ee213627e86f58e60054e13bb13 (diff)
downloadnewsaggregator-ee874ec782f750cc6c2610818b8a276c21fed99e.tar.gz
newsaggregator-ee874ec782f750cc6c2610818b8a276c21fed99e.tar.bz2
newsaggregator-ee874ec782f750cc6c2610818b8a276c21fed99e.zip
Moved classes to general area because it isn't just used in the aggregator
Diffstat (limited to 'Aggregator/Classes/Config.cs')
-rw-r--r--Aggregator/Classes/Config.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Aggregator/Classes/Config.cs b/Aggregator/Classes/Config.cs
deleted file mode 100644
index f7a94d1..0000000
--- a/Aggregator/Classes/Config.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-
-namespace Aggregator.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; }
- }
-}