made end time nullable

This commit is contained in:
Jean Jacques Avril 2025-01-01 22:05:18 +00:00
parent bdbf4659e0
commit cfb0bdf9cf
No known key found for this signature in database

View File

@ -11,7 +11,7 @@ class TimeEntryDboMapper {
TimeEntry( TimeEntry(
id: target.id!, id: target.id!,
startTime: target.startTime!, startTime: target.startTime!,
endTime: target.endTime!, endTime: target.endTime,
description: target.description, description: target.description,
userId: target.userId!, userId: target.userId!,
projectId: target.projectId!, projectId: target.projectId!,