2017-02-07 04:59:30 +00:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
using System;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
{
|
|
|
|
public class Message
|
|
|
|
{
|
|
|
|
[JsonProperty(@"message_id")]
|
|
|
|
public long Id;
|
|
|
|
|
2017-02-20 12:09:56 +00:00
|
|
|
//todo: this should be inside sender.
|
2016-08-31 10:49:34 +00:00
|
|
|
[JsonProperty(@"user_id")]
|
2016-10-07 13:51:10 +00:00
|
|
|
public int UserId;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
[JsonProperty(@"channel_id")]
|
2016-10-07 13:51:10 +00:00
|
|
|
public int ChannelId;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
[JsonProperty(@"timestamp")]
|
2016-10-13 13:42:51 +00:00
|
|
|
public DateTimeOffset Timestamp;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
[JsonProperty(@"content")]
|
2016-09-27 10:22:22 +00:00
|
|
|
public string Content;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
[JsonProperty(@"sender")]
|
2016-09-27 10:22:22 +00:00
|
|
|
public User User;
|
2016-08-31 10:49:34 +00:00
|
|
|
|
|
|
|
[JsonConstructor]
|
|
|
|
public Message()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|