openlegends_api/user/login/response/
data.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Serialize, Deserialize, Debug)]
4pub struct Data {
5    pub success: bool,
6    pub message: String,
7    pub token: Option<String>,
8}