aboutsummaryrefslogtreecommitdiff
path: root/Classes/Config.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/Config.cs')
-rw-r--r--Classes/Config.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Classes/Config.cs b/Classes/Config.cs
new file mode 100644
index 0000000..f7a94d1
--- /dev/null
+++ b/Classes/Config.cs
@@ -0,0 +1,16 @@
+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; }
+ }
+}