/* * Author: Ruben Fiszel * Copyright: Windmill Labs, Inc 2022 * This file and its contents are licensed under the AGPLv3 License. * Please see the included NOTICE for copyright information and * LICENSE-AGPL for a copy of the license. */ use serde::Deserialize; #[derive(Deserialize)] pub struct ListAppQuery { pub starred_only: Option, pub path_exact: Option, pub path_start: Option, pub include_draft_only: Option, pub with_deployment_msg: Option, }