AppFlowy/shared-lib/flowy-user-data-model/resources/proto/user_setting.proto

16 lines
320 B
Protocol Buffer
Raw Normal View History

2022-01-28 02:56:55 +00:00
syntax = "proto3";
message UserPreferences {
string user_id = 1;
AppearanceSettings appearance_setting = 2;
}
message AppearanceSettings {
string theme = 1;
LocaleSettings locale = 2;
2022-02-01 04:15:11 +00:00
bool reset_as_default = 3;
2022-01-28 02:56:55 +00:00
}
message LocaleSettings {
string language_code = 1;
string country_code = 2;
}