2017-02-07 12:59:30 +08: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 18:49:34 +08:00
|
|
|
|
|
|
|
using System;
|
2017-04-19 16:39:57 +08:00
|
|
|
using System.ComponentModel;
|
2016-08-31 18:49:34 +08:00
|
|
|
using Newtonsoft.Json;
|
2017-03-27 23:04:07 +08:00
|
|
|
using osu.Game.Users;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
{
|
2017-05-17 12:44:43 +08:00
|
|
|
public class Message
|
2016-08-31 18:49:34 +08:00
|
|
|
{
|
|
|
|
[JsonProperty(@"message_id")]
|
2017-04-19 17:46:26 +08:00
|
|
|
public readonly long Id;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
2017-02-20 20:09:56 +08:00
|
|
|
//todo: this should be inside sender.
|
2017-04-19 18:07:38 +08:00
|
|
|
[JsonProperty(@"sender_id")]
|
2016-10-07 21:51:10 +08:00
|
|
|
public int UserId;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
2017-04-19 16:39:57 +08:00
|
|
|
[JsonProperty(@"target_type")]
|
|
|
|
public TargetType TargetType;
|
|
|
|
|
|
|
|
[JsonProperty(@"target_id")]
|
|
|
|
public int TargetId;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
|
|
|
[JsonProperty(@"timestamp")]
|
2016-10-13 21:42:51 +08:00
|
|
|
public DateTimeOffset Timestamp;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
|
|
|
[JsonProperty(@"content")]
|
2016-09-27 18:22:22 +08:00
|
|
|
public string Content;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
|
|
|
[JsonProperty(@"sender")]
|
2017-04-19 18:07:38 +08:00
|
|
|
public User Sender;
|
2016-08-31 18:49:34 +08:00
|
|
|
|
|
|
|
[JsonConstructor]
|
|
|
|
public Message()
|
|
|
|
{
|
|
|
|
}
|
2017-04-19 17:46:26 +08:00
|
|
|
|
2017-05-15 12:26:35 +08:00
|
|
|
public Message(long id)
|
|
|
|
{
|
|
|
|
Id = id;
|
|
|
|
}
|
|
|
|
|
2017-05-17 12:44:43 +08:00
|
|
|
public override bool Equals(object obj)
|
|
|
|
{
|
|
|
|
var objMessage = obj as Message;
|
|
|
|
|
|
|
|
return Id == objMessage?.Id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override int GetHashCode()
|
|
|
|
{
|
|
|
|
return Id.GetHashCode();
|
|
|
|
}
|
2016-08-31 18:49:34 +08:00
|
|
|
}
|
2017-04-19 16:39:57 +08:00
|
|
|
|
|
|
|
public enum TargetType
|
|
|
|
{
|
|
|
|
[Description(@"channel")]
|
|
|
|
Channel,
|
|
|
|
[Description(@"user")]
|
|
|
|
User
|
|
|
|
}
|
2016-08-31 18:49:34 +08:00
|
|
|
}
|