Changed default event date to startDate

This commit is contained in:
Alexis
2024-05-01 14:15:56 +02:00
parent 89ef95c50f
commit 87df080857
6 changed files with 38 additions and 36 deletions

View File

@@ -2,7 +2,8 @@ import type { LeimDate } from './Date'
export interface CalendarEvent {
title: string
date: LeimDate
startDate: LeimDate
endDate?: LeimDate
description?: string
category?: CalendarEventCategory
secondaryCategories?: CalendarEventCategory[]