Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindAirCommands/
AuthResponseDTO.rs

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