Skip to main content

Mountain/IPC/WindAirCommands/
AuthResponseDTO.rs

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