blob: 9cc77cc4ef19a9b0c986db5c1d6cdec5b8b8a6c0 [file] [log] [blame]
// Copyright 2020 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package prototype;
import "prototype/client_id.proto";
option go_package = "go.chromium.org/chromiumos/infra/proto/go/prototype";
// Id of a client profile. See comment in client.proto for
// more details.
message ClientProfileId {
// Required.
string id = 1;
// Required.
ClientId client_id = 2;
}