1 2//! `AuthenticateUser` response DTO. 3 4#[derive(Debug, Clone)] 5pub struct Struct { 6 pub success:bool, 7 8 pub token:String, 9 10 pub error:String, 11}