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

15 lines
261 B
C#

using System;
namespace ChatSharp.Events
{
public class ChannelEventArgs : EventArgs
{
public IrcChannel Channel { get; set; }
public ChannelEventArgs(IrcChannel channel)
{
Channel = channel;
}
}
}