blob: d4b93568df8e2c3a29571683929c2ba0f36b3522 (
plain)
1
2
3
4
5
6
7
8
9
10
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,
}
|