diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 11:52:40 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 11:52:40 +0000 |
commit | ff609bceb2fe896ba81e7f2c80a62c627d54af8c (patch) | |
tree | 41a851ef509796ba9ceb2c761fe4b4e0c4fd7b00 | |
parent | f0181685253d0e686efaaf28a6ce4b535926d705 (diff) | |
download | newsaggregator-ff609bceb2fe896ba81e7f2c80a62c627d54af8c.tar.gz newsaggregator-ff609bceb2fe896ba81e7f2c80a62c627d54af8c.tar.bz2 newsaggregator-ff609bceb2fe896ba81e7f2c80a62c627d54af8c.zip |
Changed namespace because it is not part of the aggregator only anymore
-rw-r--r-- | Classes/Article.cs | 2 | ||||
-rw-r--r-- | Classes/Config.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Classes/Article.cs b/Classes/Article.cs index 1b91696..d132eb3 100644 --- a/Classes/Article.cs +++ b/Classes/Article.cs @@ -1,6 +1,6 @@ using System; -namespace Aggregator.Classes { +namespace Classes { /// <summary> /// Class to represent Articles in C# /// </summary> diff --git a/Classes/Config.cs b/Classes/Config.cs index f7a94d1..6b1f7f5 100644 --- a/Classes/Config.cs +++ b/Classes/Config.cs @@ -1,6 +1,6 @@ using System; -namespace Aggregator.Classes { +namespace Classes { /// <summary> /// Class to represent position for each piece of data in a class /// To be used in conjunction with article for each source |