alist/internal/model/meta.go

12 lines
323 B
Go
Raw Normal View History

2022-06-16 13:59:49 +00: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 09:08:31 +00:00
Write bool `json:"upload"`
2022-06-26 11:09:28 +00:00
Hide string `json:"hide"`
SubFolder bool `json:"sub_folder"`
2022-06-16 13:59:49 +00:00
Readme string `json:"readme"`
}