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"`
|
|
|
|
Upload 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"`
|
|
|
|
}
|