2016-08-31 18:49:34 +08:00
|
|
|
//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")]
|
2016-10-07 21:51:10 +08:00
|
|
|
public int UserId;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
|
|
|
[JsonProperty(@"channel_id")]
|
2016-10-07 21:51:10 +08:00
|
|
|
public int ChannelId;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
|
|
|
[JsonProperty(@"timestamp")]
|
|
|
|
public DateTime Timestamp;
|
|
|
|
|
|
|
|
[JsonProperty(@"content")]
|
2016-09-27 18:22:22 +08:00
|
|
|
public string Content;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
|
|
|
[JsonProperty(@"sender")]
|
2016-09-27 18:22:22 +08:00
|
|
|
public User User;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
|
|
|
[JsonConstructor]
|
|
|
|
public Message()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|