1use serde::Deserialize; 2 3#[derive(Deserialize, Debug)] 4pub struct LoginQuery { 5 pub code: String, 6 pub state: Option<String>, 7}