Fix `APINotification` parsing failing

This commit is contained in:
Dean Herbert 2022-11-02 17:53:19 +09:00
parent 58c6b026ae
commit 4f8e912f06
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace osu.Game.Online.API.Requests.Responses
{
@ -32,6 +32,6 @@ public class APINotification
public bool IsRead { get; set; }
[JsonProperty(@"details")]
public Dictionary<string, string>? Details { get; set; }
public JObject? Details { get; set; }
}
}