summaryrefslogtreecommitdiff
path: root/pkg/model/version.go
blob: f07db45278d88c1d3c3b22b907bc33cb91a9a9dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package model

import (
	"encoding/json"
	"time"
)

type Version struct {
	AccountId string
	Created   time.Time
	Data      json.RawMessage
	Id        int
	Lock      *string
	StateId   int
}