-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c01ca2
commit ce2d9f7
Showing
6 changed files
with
76 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace NewsAPI.Net.Models | ||
{ | ||
public class Language | ||
{ | ||
public static string ARABIC { get { return "ar"; } } | ||
|
||
public static string GERMAN { get { return "de"; } } | ||
|
||
public static string ENGLISH { get { return "en"; } } | ||
|
||
public static string SPANISH { get { return "es"; } } | ||
|
||
public static string FRENCH { get { return "fr"; } } | ||
|
||
public static string HEBREW { get { return "he"; } } | ||
|
||
public static string ITALIAN { get { return "it"; } } | ||
|
||
public static string GEKOLONISEERD { get { return "nl"; } } | ||
|
||
public static string NORSE { get { return "no"; } } | ||
|
||
public static string PORTUGUESE { get { return "pt"; } } | ||
|
||
public static string RUSSIAN { get { return "ru"; } } | ||
|
||
public static string SWEDISH { get { return "se"; } } | ||
|
||
public static string CHINESE { get { return "zh"; } } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp2.1;netstandard2.0;net472</TargetFrameworks> | ||
<Company /> | ||
<Version>2.0.0</Version> | ||
<PackageLicenseUrl>https://github.com/The-Grape-Vine/NewsAPI.Net/blob/master/LICENSE</PackageLicenseUrl> | ||
<Authors>CircuitRCAY</Authors> | ||
<Copyright>Copyright 2019-present The Grape Vine</Copyright> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<Version>2.2.0</Version> | ||
<RepositoryUrl>https://github.com/The-Grape-Vine/NewsAPI.Net/</RepositoryUrl> | ||
<PackageProjectUrl>https://circuitrcay.com</PackageProjectUrl> | ||
<PackageTags>news</PackageTags> | ||
<Authors>circuitrcay</Authors> | ||
<PackageLicenseUrl>https://github.com/The-Grape-Vine/NewsAPI.Net/blob/master/LICENSE</PackageLicenseUrl> | ||
<Description>A C# library wrapping https://newsapi.org</Description> | ||
<PackageReleaseNotes>Released 2.0.0, a major refactor in the core implementation.</PackageReleaseNotes> | ||
<PackageReleaseNotes>Released 2.2.0, added support for specific languages.</PackageReleaseNotes> | ||
<Copyright>2019-present The Grape Vine.</Copyright> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="System.Web.HttpUtility, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51"> | ||
<HintPath>..\..\..\..\..\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.HttpUtility.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
|
||
|
||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters