Skip to main content

Mountain/RPC/Commands/
Command.rs

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