alist/internal/model/account.go

11 lines
274 B
Go
Raw Normal View History

2022-06-06 21:48:53 +08:00
package model
type Account struct {
ID uint `json:"id" gorm:"primaryKey"`
VirtualPath string `json:"virtual_path"`
Index int `json:"index"`
2022-06-06 22:06:33 +08:00
Driver string `json:"driver"`
2022-06-06 21:48:53 +08:00
Status string `json:"status"`
2022-06-06 22:06:33 +08:00
Custom string `json:"custom"`
2022-06-06 21:48:53 +08:00
}