mwapi_responses/
lint.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-License-Identifier: GPL-3.0-or-later
 * Copyright (C) 2023 Kunal Mehta <legoktm@debian.org>
 */

use serde::Deserialize;

#[derive(Clone, Debug, Deserialize)]
pub struct TemplateInfo {
    pub name: Option<String>,
}

#[derive(Clone, Debug, Deserialize)]
pub struct TemplateParam {
    pub name: Option<String>,
}