Initial commit2
This commit is contained in:
15
app/src/main/java/com/novayaplaneta/domain/model/Task.kt
Normal file
15
app/src/main/java/com/novayaplaneta/domain/model/Task.kt
Normal file
@@ -0,0 +1,15 @@
|
||||
package com.novayaplaneta.domain.model
|
||||
|
||||
import java.time.LocalDateTime
|
||||
|
||||
data class Task(
|
||||
val id: String,
|
||||
val title: String,
|
||||
val description: String?,
|
||||
val imageUrl: String?,
|
||||
val completed: Boolean = false,
|
||||
val scheduledTime: LocalDateTime?,
|
||||
val duration: Int? = null, // in minutes
|
||||
val scheduleId: String
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user