2025-01-22 00:46:49 +01:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2025-02-22 13:35:17 +01:00
|
|
|
|
|
|
|
"go.n16f.net/uuid"
|
2025-01-22 00:46:49 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type State struct {
|
|
|
|
Created time.Time
|
2025-02-22 13:35:17 +01:00
|
|
|
Id uuid.UUID
|
2025-01-22 00:46:49 +01:00
|
|
|
Lock *string
|
|
|
|
Path string
|
|
|
|
Updated time.Time
|
|
|
|
}
|