CasaOS/model/category.go

11 lines
247 B
Go
Raw Normal View History

2021-09-26 02:35:02 +00:00
package model
type ServerCategoryList struct {
Id uint `gorm:"column:id;primary_key" json:"id"`
//CreatedAt time.Time `json:"created_at"`
//
//UpdatedAt time.Time `json:"updated_at"`
Name string `json:"name"`
Count uint `json:"count"`
}