mirror of
https://github.com/Chenyu550/alist-fork.git
synced 2025-06-10 14:46:53 -04:00
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"`
|
|
}
|