11 lines
No EOL
167 B
Rust
11 lines
No EOL
167 B
Rust
use chrono::prelude::*;
|
|
|
|
pub struct User {
|
|
|
|
}
|
|
|
|
pub struct UserLoginInfo {
|
|
pub last_login_datetime: DateTime<Utc>,
|
|
pub ip: String,
|
|
pub user_agent: String,
|
|
} |