fix
This commit is contained in:
parent
5090b85c60
commit
30638bd80b
1 changed files with 2 additions and 0 deletions
|
@ -4,8 +4,10 @@ use mongod::{assert_reference_of, reference_of, Reference, Validate};
|
||||||
|
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize, Model, Referencable)]
|
#[derive(Debug, Clone, Serialize, Deserialize, Model, Referencable)]
|
||||||
pub struct FlowInfo {
|
pub struct FlowInfo {
|
||||||
|
#[serde(default)]
|
||||||
pub _id: String,
|
pub _id: String,
|
||||||
pub name: String,
|
pub name: String,
|
||||||
|
#[serde(default)]
|
||||||
pub depends: Vec<String>,
|
pub depends: Vec<String>,
|
||||||
pub next: Option<String>,
|
pub next: Option<String>,
|
||||||
pub produces: Option<Vec<String>>,
|
pub produces: Option<Vec<String>>,
|
||||||
|
|
Loading…
Reference in a new issue