configs/
reports.rs

1use schemars::JsonSchema;
2
3use serde::{Deserialize, Serialize};
4use tsify_next::Tsify;
5
6#[derive(Clone, Debug, Deserialize, Serialize, JsonSchema, Tsify)]
7pub struct ReportsSettings {
8    #[schemars(title = "Категории тикетов")]
9    pub ticket_categories: Vec<String>,
10
11    #[schemars(title = "Категории багов")]
12    pub bug_categories: Vec<String>,
13}