18 lines
329 B
Go
18 lines
329 B
Go
package task
|
|
|
|
import (
|
|
"brainbuffer/pkg/brainbuffer/scheduling"
|
|
"time"
|
|
)
|
|
|
|
type Task struct {
|
|
ID int64
|
|
UserID string
|
|
SchedulingPatterns []scheduling.Pattern
|
|
Name string
|
|
Description string
|
|
Duration time.Duration
|
|
CreationTime time.Time
|
|
}
|
|
|
|
type Tasks []*Task
|