Files
crawlab/core/models/models/v2/setting_v2.go
2024-07-11 12:45:29 +08:00

13 lines
293 B
Go

package models
import (
"go.mongodb.org/mongo-driver/bson"
)
type SettingV2 struct {
any `collection:"settings"`
BaseModelV2[SettingV2] `bson:",inline"`
Key string `json:"key" bson:"key"`
Value bson.M `json:"value" bson:"value"`
}