plankircd/src/channel.rs
2018-06-20 16:38:12 +02:00

5 lines
77 B
Rust

pub struct Channel {
name: String,
topic: String,
users: Vec<String>,
}