chatsharp/ChatSharp/Events/SupportsEventArgs.cs

20 lines
460 B
C#

using System;
namespace ChatSharp.Events
{
/// <summary>
/// Describes the features the server supports.
/// </summary>
public class SupportsEventArgs : EventArgs
{
internal SupportsEventArgs(ServerInfo serverInfo)
{
ServerInfo = serverInfo;
}
/// <summary>
/// The server's supported featureset.
/// </summary>
public ServerInfo ServerInfo { get; set; }
}
}