blob: 89fbd67e2e5117977de2d51bcf189d1657c2d590 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
library fuchsia.feedback;
/// An annotation and its plain ASCII string key.
/// Annotations are short strings, e.g., the board name or the build version.
struct Annotation {
string:128 key;
string:1024 value;
};