This commit is contained in:
2025-02-17 06:40:06 +03:00
parent c6ff7e7ba5
commit 52aba347a8
53 changed files with 1830 additions and 2377 deletions

View File

@@ -0,0 +1,11 @@
module calbox
// Represents a single instance of a recurring event
pub struct EventInstance {
pub:
original_event Event // Reference to original event
start_time i64 // Start time of this instance
end_time i64 // End time of this instance
recurrence_id i64 // RECURRENCE-ID for this instance
is_override bool // Whether this is an overridden instance
}