From 4ec603ca3a70d84b063d38ce1f56a9d89730f8d6 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Mon, 23 Dec 2024 09:44:02 +0000 Subject: [PATCH] feat: add trello card id to trello long card --- src/trello/model/card.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/trello/model/card.rs b/src/trello/model/card.rs index 818c209..d2442d8 100644 --- a/src/trello/model/card.rs +++ b/src/trello/model/card.rs @@ -43,5 +43,6 @@ pub(crate) struct TrelloShortCard { #[derive(Debug, PartialEq, Eq, Deserialize)] pub(crate) struct TrelloLongCard { + pub(crate) id: TrelloCardId, pub(crate) attachments: Vec, }