2025-01-27 22:00:51 +01:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
2025-01-31 20:53:29 +01:00
|
|
|
"encoding/json"
|
2025-01-27 22:00:51 +01:00
|
|
|
"time"
|
2025-02-22 13:35:17 +01:00
|
|
|
|
|
|
|
"go.n16f.net/uuid"
|
2025-01-27 22:00:51 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type Version struct {
|
2025-01-31 20:53:29 +01:00
|
|
|
AccountId string
|
2025-01-27 22:00:51 +01:00
|
|
|
Created time.Time
|
2025-01-31 20:53:29 +01:00
|
|
|
Data json.RawMessage
|
2025-02-22 13:35:17 +01:00
|
|
|
Id uuid.UUID
|
2025-01-27 22:00:51 +01:00
|
|
|
Lock *string
|
2025-02-22 13:35:17 +01:00
|
|
|
StateId uuid.UUID
|
2025-01-27 22:00:51 +01:00
|
|
|
}
|