From 47fe90ee23d8ab04645ef3c7a17459ed40c5b765 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 24 Apr 2022 16:31:49 +0200 Subject: Allow to attach categories to events --- src/model/category.rs | 8 ++++++++ src/model/event.rs | 3 +++ src/model/mod.rs | 1 + 3 files changed, 12 insertions(+) create mode 100644 src/model/category.rs (limited to 'src/model') diff --git a/src/model/category.rs b/src/model/category.rs new file mode 100644 index 0000000..2f65671 --- /dev/null +++ b/src/model/category.rs @@ -0,0 +1,8 @@ +use uuid::Uuid; + +#[derive(Debug, Clone)] +pub struct Category { + pub id: Uuid, + pub name: String, + pub color: String, +} diff --git a/src/model/event.rs b/src/model/event.rs index e556f6e..6cc16a2 100644 --- a/src/model/event.rs +++ b/src/model/event.rs @@ -16,6 +16,7 @@ pub struct Event { pub end: Option, pub name: String, pub repetition: Option, + pub category: Option, } impl Event { @@ -62,6 +63,7 @@ pub fn validate( start: String, end: String, repetition: Option, + category: Option, ) -> Option { let start = validation::time(start)?; let end = validation::time(end)?; @@ -78,5 +80,6 @@ pub fn validate( start, end, repetition, + category, }) } diff --git a/src/model/mod.rs b/src/model/mod.rs index 0aefbc6..2491bb4 100644 --- a/src/model/mod.rs +++ b/src/model/mod.rs @@ -1,3 +1,4 @@ +pub mod category; pub mod event; pub mod repetition; pub mod time; -- cgit v1.2.3