casdoor_sdk/models/controllers_notification_form.rs
1
2use crate::models;
3
4#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
5pub struct ControllersNotificationForm {
6 #[serde(rename = "content", skip_serializing_if = "Option::is_none")]
7 pub content: Option<String>,
8}
9
10impl ControllersNotificationForm {
11 pub fn new() -> ControllersNotificationForm {
12 ControllersNotificationForm {
13 content: None,
14 }
15 }
16}
17