Files
2025-12-26 16:45:40 +08:00

11 lines
130 B
Go

package service
import "time"
type Setting struct {
ID int64
Key string
Value string
UpdatedAt time.Time
}