Add com.shr4pnel.ferretirc.irc package to model the live state of IRC

This commit is contained in:
2026-09-12 20:10:54 +01:00
parent 3ad2740dd2
commit d52b1085f9
4 changed files with 67 additions and 0 deletions
@@ -0,0 +1,5 @@
package com.shr4pnel.ferretirc.irc
class IRCChannel(val chanName: String, val clientCount: Int, val topic: String) {
}