mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 14:42:30 +00:00
6 lines
136 B
Rust
6 lines
136 B
Rust
use derive_more::From;
|
|
use ical::parser::ical::component::IcalTodo;
|
|
|
|
#[derive(Debug, Clone, From)]
|
|
pub struct TodoObject(pub IcalTodo);
|