mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-25 19:44:27 +00:00
25 lines
646 B
C#
25 lines
646 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace DiscordRPC.Message
|
|
{
|
|
/// <summary>
|
|
/// The connection to the discord client was succesfull. This is called before <see cref="MessageType.Ready"/>.
|
|
/// </summary>
|
|
public class ConnectionEstablishedMessage : IMessage
|
|
{
|
|
/// <summary>
|
|
/// The type of message received from discord
|
|
/// </summary>
|
|
public override MessageType Type { get { return MessageType.ConnectionEstablished; } }
|
|
|
|
/// <summary>
|
|
/// The pipe we ended up connecting too
|
|
/// </summary>
|
|
public int ConnectedPipe { get; internal set; }
|
|
}
|
|
}
|