about summary refs log blame commit diff
path: root/IrcStates/ChannelUser.cs
blob: 220a9c441be765b3e25e5e8909c9865b475308ac (plain) (tree)
1
2
3
4
5
6
7






                                               




                                       

     
using System.Collections.Generic;

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

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