mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 04:36:09 +08:00
12 lines
323 B
Go
12 lines
323 B
Go
![]() |
package model
|
||
|
|
||
|
type Meta struct {
|
||
|
ID uint `json:"id" gorm:"primaryKey"`
|
||
|
Path string `json:"path" gorm:"unique" binding:"required"`
|
||
|
Password string `json:"password"`
|
||
|
Hide string `json:"hide"`
|
||
|
Upload bool `json:"upload"`
|
||
|
OnlyShows string `json:"only_shows"`
|
||
|
Readme string `json:"readme"`
|
||
|
}
|