chromium/mojo/public/mojom/base/version.mojom

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module mojo_base.mojom;

// Version represents a dotted version number, like "1.2.3.4".

struct Version {
  array<uint32> components;
};