plankircd/src/channel.rs

5 lines
77 B
Rust
Raw Normal View History

2018-06-20 16:38:12 +02:00
pub struct Channel {
name: String,
topic: String,
users: Vec<String>,
}