mirror of
https://github.com/AlistGo/alist.git
synced 2025-05-18 12:12:33 +08:00
9 lines
184 B
Go
9 lines
184 B
Go
package model
|
|
|
|
type Meta struct {
|
|
Path string `json:"path" gorm:"primaryKey"`
|
|
Password string `json:"password"`
|
|
Hide bool `json:"hide"`
|
|
Ignore bool `json:"ignore"`
|
|
}
|