blob: b434f228359559ce40472d32c700055efe3af5a9 [file] [log] [blame]
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package lab_platform;
import "lab_platform/stable_version_key.proto";
option go_package = "go.chromium.org/chromiumos/infra/proto/go/lab_platform";
// StableFirmwareVersion is an association between a given ChromeOS version
// and a string uniquely identifying the firmware version.
// next tag: 3
message StableFirmwareVersion {
StableVersionKey key = 1;
string version = 2;
}