14 lines
141 B
Go
14 lines
141 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type State struct {
|
||
|
Created time.Time
|
||
|
Id int
|
||
|
Lock *string
|
||
|
Path string
|
||
|
Updated time.Time
|
||
|
}
|