mirror of
https://github.com/kristoferssolo/echoes-of-ascension.git
synced 2025-10-21 18:50:34 +00:00
8 lines
163 B
Rust
8 lines
163 B
Rust
use super::{user_code::UserCode, username::Username};
|
|
|
|
#[derive(Debug, Clone, Default)]
|
|
pub struct NewUser {
|
|
pub username: Username,
|
|
pub code: UserCode,
|
|
}
|