mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-04 07:22:13 +08:00
11 lines
130 B
Go
11 lines
130 B
Go
|
|
package service
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type Setting struct {
|
||
|
|
ID int64
|
||
|
|
Key string
|
||
|
|
Value string
|
||
|
|
UpdatedAt time.Time
|
||
|
|
}
|