diff --git a/domain/src/vo/account.rs b/domain/src/vo/account.rs index 01b2ccb..7f57869 100644 --- a/domain/src/vo/account.rs +++ b/domain/src/vo/account.rs @@ -20,5 +20,6 @@ pub struct LoginAccount { #[derive(Debug, Clone, Deserialize, Serialize)] pub struct RefreshTokenResult { pub token: String, + #[serde(rename = "refreshToken")] pub refresh_token: String, }