about summary refs log tree commit diff
path: root/IrcStates/Emit.cs
blob: 9ca9cb5ba75e8f24b7ba02d103fa9703bc817fc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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; }
    }
}