smbcloud_model/
reset_password_response.rs

1use {
2    serde::{Deserialize, Serialize},
3    tsync::tsync,
4};
5
6#[derive(Debug, Serialize, Deserialize)]
7#[tsync]
8pub struct ResetPasswordResponse {
9    pub code: Option<i32>,
10    pub message: String,
11}