1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 21:27:24 +08:00
osu-lazer/osu.Game/Online/Chat/Message.cs

36 lines
815 B
C#
Raw Normal View History

// 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 18:49:34 +08:00
using System;
using Newtonsoft.Json;
namespace osu.Game.Online.Chat
{
public class Message
{
[JsonProperty(@"message_id")]
public long Id;
2017-02-20 20:09:56 +08:00
//todo: this should be inside sender.
2016-08-31 18:49:34 +08:00
[JsonProperty(@"user_id")]
public int UserId;
2016-08-31 18:49:34 +08:00
[JsonProperty(@"channel_id")]
public int ChannelId;
2016-08-31 18:49:34 +08:00
[JsonProperty(@"timestamp")]
public DateTimeOffset Timestamp;
2016-08-31 18:49:34 +08:00
[JsonProperty(@"content")]
public string Content;
2016-08-31 18:49:34 +08:00
[JsonProperty(@"sender")]
public User User;
2016-08-31 18:49:34 +08:00
[JsonConstructor]
public Message()
{
}
}
}