2021-04-09 05:30:50 +03:00
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
2024-10-30 07:53:26 +02:00
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize, Default)]
|
2021-04-09 05:30:50 +03:00
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct WebSettings {
|
|
|
|
pub divs: Vec<Div>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl WebSettings {
|
|
|
|
pub fn new() -> WebSettings {
|
|
|
|
Default::default()
|
|
|
|
}
|
|
|
|
}
|