mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-07-12 06:19:13 +00:00
First commit
This commit is contained in:
25
DiscordAPI/Message/JoinRequestMessage.cs
Normal file
25
DiscordAPI/Message/JoinRequestMessage.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace DiscordRPC.Message
|
||||
{
|
||||
/// <summary>
|
||||
/// Called when some other person has requested access to this game. C -> D -> C.
|
||||
/// </summary>
|
||||
public class JoinRequestMessage : IMessage
|
||||
{
|
||||
/// <summary>
|
||||
/// The type of message received from discord
|
||||
/// </summary>
|
||||
public override MessageType Type { get { return MessageType.JoinRequest; } }
|
||||
|
||||
/// <summary>
|
||||
/// The discord user that is requesting access.
|
||||
/// </summary>
|
||||
[JsonProperty("user")]
|
||||
public User User { get; internal set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user