mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-19 16:46:55 +00:00
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
|
|
}
|