HomeDisk/utils/src/database/user.rs

6 lines
92 B
Rust
Raw Normal View History

pub struct User {
pub id: String,
pub username: String,
pub password: String,
}