Skip to main content

Mountain/RPC/Commands/
Command.rs

1#![allow(non_snake_case)]
2
3//! Command definition DTO.
4
5use serde::{Deserialize, Serialize};
6
7#[derive(Debug, Clone, Serialize, Deserialize)]
8pub struct Struct {
9	pub id:String,
10	pub title:String,
11	pub description:Option<String>,
12}