canic_core/dto/metadata.rs
1use crate::dto::prelude::*;
2
3//
4// CanicMetadataResponse
5//
6
7#[derive(CandidType, Clone, Debug, Deserialize)]
8pub struct CanicMetadataResponse {
9 pub package_name: String,
10 pub package_version: String,
11 pub package_description: String,
12 pub canic_version: String,
13 pub canister_version: u64,
14}