f3-rs/src/topic.rs

12 lines
305 B
Rust
Raw Normal View History

2023-01-02 17:13:50 +05:30
use serde::{Deserialize, Serialize};
/// A list of categories associated with a project.
#[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct Topic {
/// Unique identifier of the topic
pub index: usize,
/// Name of the category the project belongs to
pub name: String,
}