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.