17 lines
224 B
Go
17 lines
224 B
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"time"
|
|
|
|
"go.n16f.net/uuid"
|
|
)
|
|
|
|
type Version struct {
|
|
AccountId string
|
|
Created time.Time
|
|
Data json.RawMessage
|
|
Id uuid.UUID
|
|
Lock *string
|
|
StateId uuid.UUID
|
|
}
|