forked from Silverfish/proton-bridge
25 lines
272 B
Go
25 lines
272 B
Go
package events
|
|
|
|
import "time"
|
|
|
|
type SyncStarted struct {
|
|
eventBase
|
|
|
|
UserID string
|
|
}
|
|
|
|
type SyncProgress struct {
|
|
eventBase
|
|
|
|
UserID string
|
|
Progress float64
|
|
Elapsed time.Duration
|
|
Remaining time.Duration
|
|
}
|
|
|
|
type SyncFinished struct {
|
|
eventBase
|
|
|
|
UserID string
|
|
}
|