8 lines
165 B
Go
8 lines
165 B
Go
package fields
|
|
|
|
// TenantConfig 租户配置
|
|
type TenantConfig struct {
|
|
Theme string `json:"theme,omitempty"`
|
|
Features []string `json:"features,omitempty"`
|
|
}
|