1syntax = "proto3";
2
3option java_package = "com.example.datastoresampleapp";
4option java_multiple_files = true;
5
6message Settings {
7  int32 counter = 1;
8  bool foo = 2;
9}
10