12 lines
402 B
Go
12 lines
402 B
Go
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation and Dapr Contributors.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
package configuration
|
|
|
|
// Metadata contains a configuration store specific set of metadata property.
|
|
type Metadata struct {
|
|
Properties map[string]string `json:"properties"`
|
|
}
|