openlegends_api/user/register/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}