blob: c1b327096124200f454a23531ae6ea17efeec1e9 [file] [log] [blame]
// Copyright 2020 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 client;
import "client/client_id.proto";
option go_package = "go.chromium.org/chromiumos/infra/proto/go/client";
// Id of a client profile. See comment in client/client.proto for
// more details.
message ProfileId {
// Required.
string id = 1;
// Required.
client.ClientId client_id = 2;
}