Files
herolib/lib/servers/calendar/calbox/event_instance.v
2025-02-17 06:40:06 +03:00

12 lines
380 B
V

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
}