mirror of https://github.com/Xhofe/alist
10 lines
236 B
Go
10 lines
236 B
Go
![]() |
package model
|
||
|
|
||
|
type Account struct {
|
||
|
ID uint `json:"id" gorm:"primaryKey"`
|
||
|
VirtualPath string `json:"virtual_path"`
|
||
|
Index int `json:"index"`
|
||
|
Type string `json:"type"`
|
||
|
Status string `json:"status"`
|
||
|
}
|