11 lines
275 B
Go
11 lines
275 B
Go
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"`
|
|
Font string `json:"font"`
|
|
Name string `json:"name"`
|
|
Count uint `json:"count"`
|
|
}
|