about summary refs log blame commit diff
path: root/IRCStates/Emit.cs
blob: a5f1af5dd19a3d21ff8ca9e33cfb061d0d2a8351 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                    
                   


                     




                                                
                                      

                                            






                                                  
                                          

     
using System.Collections.Generic;

namespace IRCStates
{
    public class Emit
    {
        public string Command { get; set; }
        public string Subcommand { get; set; }
        public string Text { get; set; }
        public List<string> Tokens { get; set; }
        public bool Finished { get; set; }
        public bool Self { get; set; }
        public bool SelfSource { get; set; }
        public bool SelfTarget { get; set; }
        public User User { get; set; }
        public User UserSource { get; set; }
        public User UserTarget { get; set; }
        public List<User> Users { get; set; }
        public Channel Channel { get; set; }
        public Channel ChannelSource { get; set; }
        public Channel ChannelTarget { get; set; }
        public string Target { get; set; }
    }
}