mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 01:12:24 +00:00
8 lines
148 B
Rust
8 lines
148 B
Rust
use ical::parser::ical::component::IcalTodo;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct TodoObject {
|
|
pub todo: IcalTodo,
|
|
pub(crate) ics: String,
|
|
}
|