13 lines
400 B
Go
13 lines
400 B
Go
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
package exporters
|
|
|
|
// Metadata represents a set of exporter specific properties
|
|
type Metadata struct {
|
|
Properties map[string]string `json:"properties"`
|
|
Buffer *string `json:"-"`
|
|
}
|