about summary refs log tree commit diff
path: root/IrcStates/ChannelUser.cs
blob: 14f428077855587c1b320aedbb2933529bd2ff37 (plain) (blame)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

namespace IrcStates
{
    public class ChannelUser
    {
        public List<string> Modes { get; set; }
    }
}