pronounss/prns/src/models.rs

15 lines
232 B
Rust
Raw Permalink Normal View History

#[derive(Debug)]
pub struct User {
pub id: String,
pub sid: String,
pub username: String,
}
#[derive(Debug)]
pub struct Member {
pub id: String,
pub user_id: String,
pub sid: String,
pub name: String,
}