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