ircsharp/IrcStates/ChannelUser.cs

10 lines
151 B
C#

using System.Collections.Generic;
namespace IrcStates
{
public class ChannelUser
{
public List<string> Modes { get; set; }
}
}