mirror of
https://github.com/edera-dev/sprout.git
synced 2025-12-19 17:30:17 +00:00
12 lines
291 B
Rust
12 lines
291 B
Rust
|
|
use serde::{Deserialize, Serialize};
|
||
|
|
use std::collections::BTreeMap;
|
||
|
|
|
||
|
|
#[derive(Serialize, Deserialize, Default, Clone)]
|
||
|
|
pub struct EntryDeclaration {
|
||
|
|
pub title: String,
|
||
|
|
#[serde(default)]
|
||
|
|
pub actions: Vec<String>,
|
||
|
|
#[serde(default)]
|
||
|
|
pub values: BTreeMap<String, String>,
|
||
|
|
}
|