refactor: remove old Response object involved in MFA implementation

This commit is contained in:
xystrive 2024-07-04 18:02:10 +01:00
parent 2dcee5cff0
commit c3eec16c29
1 changed files with 0 additions and 9 deletions

View File

@ -35,12 +35,3 @@ pub struct LoginSchema {
pub login_source: Option<String>,
pub gift_code_sku_id: Option<String>,
}
#[derive(Debug, Clone, Default, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub struct TotpSchema {
code: String,
ticket: String,
gift_code_sku_id: Option<String>,
login_source: Option<String>,
}