blob: 9fb6c10d9cebde4999d02c5581265320a035b805 [file] [log] [blame]
// Copyright 2019 The Flutter 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 = "proto2";
package dashboard;
import "lib/model/commit.proto";
import "lib/model/task.proto";
message CommitStatus {
optional Commit commit = 1;
repeated Task tasks = 2;
optional string branch = 3;
}