diff options
author | jelemux <jeremias.weber@protonmail.com> | 2020-11-19 07:37:20 +0100 |
---|---|---|
committer | jelemux <jeremias.weber@protonmail.com> | 2020-11-19 07:37:20 +0100 |
commit | 49588f22f7d20193f899226107c9e323a82c6951 (patch) | |
tree | 7f7bb739336f87aa2c950038f7d5a7e154f09dbd /src/view/birthday.rs | |
parent | 104f70b0968d7138d6cf944da98d95a405b1a049 (diff) | |
download | wasm-card-49588f22f7d20193f899226107c9e323a82c6951.tar.gz wasm-card-49588f22f7d20193f899226107c9e323a82c6951.tar.bz2 |
added telephone, but causes problems
Diffstat (limited to 'src/view/birthday.rs')
-rw-r--r-- | src/view/birthday.rs | 11 |
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 |