summaryrefslogtreecommitdiff
path: root/src/view/birthday.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/birthday.rs')
-rw-r--r--src/view/birthday.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/view/birthday.rs b/src/view/birthday.rs
new file mode 100644
index 0000000..d4b9356
--- /dev/null
+++ b/src/view/birthday.rs
@@ -0,0 +1,11 @@
+use yew::prelude::*;
+use vcard::properties;
+use vcard::parameters;
+use vcard::values::{self, text};
+
+#[derive(Clone)]
+pub struct Birthday {
+ pub year: u16,
+ pub month: u8,
+ pub day: u8,
+} \ No newline at end of file