blob: 05ad2a5931f82c3decdaa3189054c3d43c2b2fdf [file] [log] [blame]
// Copyright 2017 The LUCI Authors. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
syntax = "proto3";
package config;
// An operating system to store in the database.
message OS {
// The name of this operating system. Must be unique.
string name = 1;
// A description of this operating system.
string description = 2;
}
// A list of operating systems.
message OSes {
// A list of operating systems.
repeated OS operating_system = 1;
}