ircsharp/IRCStates/Emit.cs

25 lines
814 B
C#
Raw Normal View History

2020-04-29 05:28:48 +00:00
using System.Collections.Generic;
2020-05-15 03:06:10 +00:00
namespace IRCStates
{
public class Emit
{
2020-04-29 05:28:48 +00:00
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; }
2020-04-29 05:28:48 +00:00
public bool SelfSource { get; set; }
public bool SelfTarget { get; set; }
2020-05-13 18:21:49 +00:00
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; }
2020-04-29 05:28:48 +00:00
public string Target { get; set; }
}
}