Files
OpenList/internal/model/meta.go

12 lines
323 B
Go
Raw Normal View History

2022-06-16 21:59:49 +08:00
package model
type Meta struct {
ID uint `json:"id" gorm:"primaryKey"`
Path string `json:"path" gorm:"unique" binding:"required"`
Password string `json:"password"`
2022-06-29 17:08:31 +08:00
Write bool `json:"upload"`
2022-06-26 19:09:28 +08:00
Hide string `json:"hide"`
SubFolder bool `json:"sub_folder"`
2022-06-16 21:59:49 +08:00
Readme string `json:"readme"`
}