alist/internal/model/meta.go

15 lines
406 B
Go
Raw Normal View History

2022-06-16 13:59:49 +00:00
package model
type Meta struct {
2022-06-30 07:41:58 +00:00
ID uint `json:"id" gorm:"primaryKey"`
Path string `json:"path" gorm:"unique" binding:"required"`
Password string `json:"password"`
PSub bool `json:"p_sub"`
Write bool `json:"write"`
WSub bool `json:"w_sub"`
Hide string `json:"hide"`
HSub bool `json:"h_sub"`
Readme string `json:"readme"`
RSub bool `json:"r_sub"`
2022-06-16 13:59:49 +00:00
}