Skip to main content

Mountain/IPC/WindAirCommands/
SearchResultsDTO.rs

1#![allow(non_snake_case)]
2
3//! Search-results envelope returned by `SearchFiles`.
4
5use serde::{Deserialize, Serialize};
6
7use crate::IPC::WindAirCommands::FileResultDTO;
8
9#[derive(Debug, Clone, Serialize, Deserialize)]
10pub struct Struct {
11	pub results:Vec<FileResultDTO::Struct>,
12	pub total_results:u32,
13}