Files
ninachloe/FaustBot/Model/RemoteUser.py
2022-03-31 15:21:47 +02:00

10 lines
225 B
Python

class RemoteUser(object):
"""
Holds information about another user on IRC (nick!user@host)
"""
def __init__(self, nick, user, host):
self.nick = nick
self.user = user
self.host = host