zesty_api/v0/software.rs
1//
2// Copyright 2023 Zesty Tech Ltd. All rights reserved.
3// Use is subject to license terms.
4//
5
6use super::*;
7
8#[derive(Clone, Debug, Serialize, Deserialize)]
9pub struct Software {
10 /// Installed and reported Zesty software version
11 pub version: String,
12 /// Pending software update
13 pub update: Option<String>,
14}