mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Fix APINotification
parsing failing
This commit is contained in:
@ -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 @@ namespace osu.Game.Online.API.Requests.Responses
|
||||
public bool IsRead { get; set; }
|
||||
|
||||
[JsonProperty(@"details")]
|
||||
public Dictionary<string, string>? Details { get; set; }
|
||||
public JObject? Details { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user