mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 20:57:25 +08:00
78c1d4581f
This reverts commit aaaee5ed10
.
66 lines
1.4 KiB
C#
66 lines
1.4 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.ComponentModel;
|
|
using Newtonsoft.Json;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Online.Chat
|
|
{
|
|
public class Message
|
|
{
|
|
[JsonProperty(@"message_id")]
|
|
public readonly long Id;
|
|
|
|
//todo: this should be inside sender.
|
|
[JsonProperty(@"sender_id")]
|
|
public int UserId;
|
|
|
|
[JsonProperty(@"target_type")]
|
|
public TargetType TargetType;
|
|
|
|
[JsonProperty(@"target_id")]
|
|
public int TargetId;
|
|
|
|
[JsonProperty(@"timestamp")]
|
|
public DateTimeOffset Timestamp;
|
|
|
|
[JsonProperty(@"content")]
|
|
public string Content;
|
|
|
|
[JsonProperty(@"sender")]
|
|
public User Sender;
|
|
|
|
[JsonConstructor]
|
|
public Message()
|
|
{
|
|
}
|
|
|
|
public Message(long id)
|
|
{
|
|
Id = id;
|
|
}
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
var objMessage = obj as Message;
|
|
|
|
return Id == objMessage?.Id;
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return Id.GetHashCode();
|
|
}
|
|
}
|
|
|
|
public enum TargetType
|
|
{
|
|
[Description(@"channel")]
|
|
Channel,
|
|
[Description(@"user")]
|
|
User
|
|
}
|
|
}
|