diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 11:36:48 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-04 11:36:48 +0000 |
commit | ee874ec782f750cc6c2610818b8a276c21fed99e (patch) | |
tree | 05b0e03c5fff25b2715d433514cb54429a725af1 /Aggregator | |
parent | 95e75992bca29ee213627e86f58e60054e13bb13 (diff) | |
download | newsaggregator-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')
-rw-r--r-- | Aggregator/Aggregator.sln | 6 | ||||
-rw-r--r-- | Aggregator/Classes/Article.cs | 15 | ||||
-rw-r--r-- | Aggregator/Classes/Classes.csproj | 7 | ||||
-rw-r--r-- | Aggregator/Classes/Config.cs | 16 |
4 files changed, 0 insertions, 44 deletions
diff --git a/Aggregator/Aggregator.sln b/Aggregator/Aggregator.sln index ecc0ea3..a1c86cb 100644 --- a/Aggregator/Aggregator.sln +++ b/Aggregator/Aggregator.sln @@ -5,8 +5,6 @@ VisualStudioVersion = 15.0.28307.271 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Parser", "Parser\Parser.csproj", "{CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Classes", "Classes\Classes.csproj", "{AB1F3DD4-1B23-427A-8F32-C11EC20A0815}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{E9ED051D-909D-464F-99E2-5BA57BD06D00}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Main", "Main\Main.csproj", "{351B47B8-C766-43BD-AF1C-C281B0FD99E7}" @@ -21,10 +19,6 @@ Global {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Debug|Any CPU.Build.0 = Debug|Any CPU {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Release|Any CPU.ActiveCfg = Release|Any CPU {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Release|Any CPU.Build.0 = Release|Any CPU - {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Release|Any CPU.ActiveCfg = Release|Any CPU - {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Release|Any CPU.Build.0 = Release|Any CPU {E9ED051D-909D-464F-99E2-5BA57BD06D00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E9ED051D-909D-464F-99E2-5BA57BD06D00}.Debug|Any CPU.Build.0 = Debug|Any CPU {E9ED051D-909D-464F-99E2-5BA57BD06D00}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/Aggregator/Classes/Article.cs b/Aggregator/Classes/Article.cs deleted file mode 100644 index 1b91696..0000000 --- a/Aggregator/Classes/Article.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; - -namespace Aggregator.Classes { - /// <summary> - /// Class to represent Articles in C# - /// </summary> - public class Article { - public string Title { get; set; } - public string Description { get; set; } - public string ImageLink { get; set; } - public string ArticleLink { get; set; } - public string Source { get; set; } - public DateTime PublishDate { get; set; } - } -} diff --git a/Aggregator/Classes/Classes.csproj b/Aggregator/Classes/Classes.csproj deleted file mode 100644 index 86ea3bb..0000000 --- a/Aggregator/Classes/Classes.csproj +++ /dev/null @@ -1,7 +0,0 @@ -<Project Sdk="Microsoft.NET.Sdk"> - - <PropertyGroup> - <TargetFramework>netcoreapp2.1</TargetFramework> - </PropertyGroup> - -</Project> 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; } - } -} |