summaryrefslogtreecommitdiff
path: root/systems/sheet/src/index_source.rs
diff options
context:
space:
mode:
Diffstat (limited to 'systems/sheet/src/index_source.rs')
-rw-r--r--systems/sheet/src/index_source.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/systems/sheet/src/index_source.rs b/systems/sheet/src/index_source.rs
index a2fc43d..b22f5a6 100644
--- a/systems/sheet/src/index_source.rs
+++ b/systems/sheet/src/index_source.rs
@@ -1,6 +1,8 @@
+use serde::{Deserialize, Serialize};
+
/// IndexSource
/// Points to a unique resource address in Vault
-#[derive(Debug, Clone, Copy)]
+#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub struct IndexSource {
/// The index ID of the resource
id: u32,