1#![allow(non_snake_case)] 2 3//! Authentication response DTO returned by `AuthenticateUser`. 4 5use serde::{Deserialize, Serialize}; 6 7#[derive(Debug, Clone, Serialize, Deserialize)] 8pub struct Struct { 9 pub success:bool, 10 pub token:String, 11 pub error:Option<String>, 12}