mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-11-25 19:37:41 +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"`
|
||
|
|
}
|