blob: 1d15bd17520a438533901f8b0a9d40801c48d770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
}
|