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

syntax = "proto2";

option optimize_for = LITE_RUNTIME;

package login_manager;
option go_package = "go.chromium.org/chromiumos/system_api/login_manager_proto";

// Metadata sent with a 'store' request to the login screen storage.
message LoginScreenStorageMetadata {
  // Whether saved key/value pair should be deleted on session exit.
  optional bool clear_on_session_exit = 1;
}
