CasaOS/model/version.go

12 lines
277 B
Go
Raw Permalink Normal View History

2021-09-26 02:35:02 +00:00
package model
import "time"
type Version struct {
Id uint `gorm:"column:id;primary_key" json:"id"`
2022-05-05 05:46:55 +00:00
ChangeLog string `json:"change_log"`
2021-09-26 02:35:02 +00:00
Version string `json:"version"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}