Add basic online API support.

This commit is contained in:
Dean Herbert
2016-08-31 19:49:34 +09:00
parent 6a588301ba
commit 8870935a4b
14 changed files with 819 additions and 4 deletions

View File

@ -0,0 +1,34 @@
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using Newtonsoft.Json;
namespace osu.Game.Online.Chat
{
public class Message
{
[JsonProperty(@"message_id")]
public long Id;
[JsonProperty(@"user_id")]
public string UserId;
[JsonProperty(@"channel_id")]
public string ChannelId;
[JsonProperty(@"timestamp")]
public DateTime Timestamp;
[JsonProperty(@"content")]
internal string Content;
[JsonProperty(@"sender")]
internal string User;
[JsonConstructor]
public Message()
{
}
}
}