1
0
mirror of https://github.com/IceWhaleTech/CasaOS.git synced 2025-07-06 23:37:26 +02:00
Files
CasaOS/model/category.go

12 lines
275 B
Go
Raw Normal View History

2021-09-26 10:35:02 +08: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"`
2021-12-29 16:42:20 +08:00
Font string `json:"font"`
2021-09-26 10:35:02 +08:00
Name string `json:"name"`
Count uint `json:"count"`
}