chromium/components/feed/core/proto/v2/keyvalue_store.proto

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

syntax = "proto3";

package feedkvstore;

option optimize_for = LITE_RUNTIME;

message Entry {
  bytes value = 1;
  // Unix timetamp in milliseconds.
  int64 modification_time = 2;
}