com.ircclouds.irc.api.commands.SendRawMessage Maven / Gradle / Ivy
package com.ircclouds.irc.api.commands;
public class SendRawMessage implements ICommand
{
private String text;
public SendRawMessage(String aText)
{
text = aText;
}
public String asString()
{
return text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy