ircsharp/IRCStates/Emit.cs
Ben Harris 21f1e95fb8
All checks were successful
continuous-integration/drone/push Build is passing
rename Irc to IRC
2020-05-14 23:17:47 -04:00

25 lines
814 B
C#

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; }
}
}