Skip to main content

Mountain/Air/AirServiceTypesStub/
SearchFilesResponse.rs

1#![allow(non_snake_case)]
2
3//! `SearchFiles` response DTO.
4
5use crate::Air::AirServiceTypesStub::FileResultProtoDTO;
6
7#[derive(Debug, Clone)]
8pub struct Struct {
9	pub results:Vec<FileResultProtoDTO::Struct>,
10	pub total_results:u32,
11	pub error:String,
12}