From be79c25aad4e6b7592f3a0bcdea1fdaceed34a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E8=BF=90=E5=AE=B6?= Date: Wed, 26 Jun 2024 17:25:35 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9token=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E5=BA=8F=E5=88=97=E5=8C=96=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- domain/src/vo/account.rs | 1 + 1 file changed, 1 insertion(+) 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, }