Files
handmade-revolt-backend/crates/quark/src/models/users/user_settings.rs
2022-06-02 12:17:30 +01:00

7 lines
235 B
Rust

use std::collections::HashMap;
/// HashMap of user settings
/// Each key is mapped to a tuple consisting of the
/// revision timestamp and serialised data (in JSON format)
pub type UserSettings = HashMap<String, (i64, String)>;