1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 11:27:24 +08:00

Add explicit usage via attribute

This commit is contained in:
Dean Herbert 2018-09-26 19:58:58 +09:00
parent 2ed7785cfc
commit 6f3c8e9f8b

View File

@ -2,13 +2,17 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic; using System.Collections.Generic;
using Newtonsoft.Json;
using osu.Game.Online.Chat; using osu.Game.Online.Chat;
namespace osu.Game.Online.API.Requests namespace osu.Game.Online.API.Requests
{ {
public class GetUpdatesResponse public class GetUpdatesResponse
{ {
[JsonProperty]
public List<Channel> Presence; public List<Channel> Presence;
[JsonProperty]
public List<Message> Messages; public List<Message> Messages;
} }
} }