//! Domain models for TickTick data structures.
//!
//! This module contains the core data types used throughout the application,
//! matching the TickTick API's JSON format with serde serialization support.
//!
//! # Main Types
//!
//! - [`Task`] - A task/to-do item with title, dates, priority, tags, etc.
//! - [`Project`] - A project/list that contains tasks
//! - [`ChecklistItem`] - A subtask within a task (for reading)
//! - [`ChecklistItemRequest`] - A subtask request (for creating/updating)
//!
//! # Enums
//!
//! - [`Priority`] - Task priority levels (None, Low, Medium, High)
//! - [`Status`] - Task completion status (Normal, Complete)
//!
//! # Constants
//!
//! - [`INBOX_PROJECT_ID`] - The special ID for the Inbox project
pub use Priority;
pub use ;
pub use Status;
pub use ;
pub use Task;