teo_runtime/comment/
mod.rs

1
2
3
4
5
6
7
use serde::Serialize;

#[derive(Debug, Serialize, Clone)]
pub struct Comment {
    pub name: Option<String>,
    pub desc: Option<String>,
}