Resharper suggestions

This commit is contained in:
runebaas 2018-04-30 23:44:19 +02:00
parent b81284bfe7
commit cdb104cacc
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
55 changed files with 382 additions and 550 deletions

View file

@ -2,7 +2,7 @@
{
public class PageCoordinates
{
public float lat { get; set; }
public float lon { get; set; }
public float Lat { get; set; }
public float Lon { get; set; }
}
}

View file

@ -1,5 +1,4 @@
using System;
using System.Runtime.Serialization;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
@ -18,7 +17,7 @@ namespace WikipediaApi.Page
public string Displaytitle { get; set; }
[JsonProperty("namespace")]
public PageNamespace @Namespace { get; set; }
public PageNamespace Namespace { get; set; }
[JsonProperty("titles")]
public PageTitles Titles { get; set; }

View file

@ -1,5 +1,4 @@
using System;
using System.Net.Http;
using System.Net.Http;
using System.Threading.Tasks;
using Newtonsoft.Json;
using WikipediaApi.Page;