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

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

        public ChannelUser()
        {
            Modes = new List<string>();
        }
    }
}