From bed71ae3d41177d0eadf79a646ddff45a690fdaf Mon Sep 17 00:00:00 2001 From: Albie Date: Sun, 19 Dec 2021 08:13:45 +0000 Subject: [PATCH] Update readme.md --- readme.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 6e0ea36..db0f205 100644 --- a/readme.md +++ b/readme.md @@ -13,18 +13,17 @@ The OnionFruitâ„¢ API provides developers with an easy way to get access to metr 1. Install the NuGet package (see icons above) 2. Create an `ApiClient` for the lifetime of the program 3. Use one of the [extension methods](/src/Extensions), or create your own request/response combo -> The response objects in this project are mapped to `System.Text.Json` serializers. These will be changed to `DataMember` in the future once the .NET team add support ```cs using System.Threading.Tasks; using DragonFruit.Data; -using DragonFruit.Data.Serializers.SystemJson; +using DragonFruit.Data.Serializers.Newtonsoft; using DragonFruit.OnionFruit.Api.Requests; using DragonFruit.OnionFruit.Api.Extensions; namespace OnionFruit.Demo; -static readonly ApiClient _client = new ApiClient(); +static readonly ApiClient _client = new ApiClient(); public static async Task Main(string[] args) { @@ -47,4 +46,4 @@ public static async Task Main(string[] args) ### License These (the api and tooling) are open-source components of OnionFruitâ„¢. These are licensed under the MIT license. -Refer to the license file for more info. \ No newline at end of file +Refer to the license file for more info.