chatsharp/ChatSharp/Events/SupportsEventArgs.cs
2015-03-15 21:38:55 +01:00

15 lines
275 B
C#

using System;
namespace ChatSharp.Events
{
public class SupportsEventArgs : EventArgs
{
public ServerInfo ServerInfo { get; set; }
public SupportsEventArgs(ServerInfo serverInfo)
{
ServerInfo = serverInfo;
}
}
}