13 lines
251 B
Go
13 lines
251 B
Go
package common
|
|
|
|
import (
|
|
"github.com/fiskerinc/cloud-services/pkg/common/dbbasemodel"
|
|
)
|
|
|
|
type TRexSetting struct {
|
|
CANEnabled bool `pg:"can_enabled"`
|
|
LogLevel string `pg:"logging_level"`
|
|
VIN string `pg:",pk"`
|
|
dbbasemodel.DBModelBase
|
|
}
|