1/// The `"info"` property of an OpenAPI spec. 2#[derive(Debug)] 3#[cfg_attr(feature = "serde", derive(serde::Deserialize))] 4pub struct Info { 5 pub title: String, 6 pub version: String, 7}