mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
16 lines
320 B
Protocol Buffer
16 lines
320 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message UserPreferences {
|
|
string user_id = 1;
|
|
AppearanceSettings appearance_setting = 2;
|
|
}
|
|
message AppearanceSettings {
|
|
string theme = 1;
|
|
LocaleSettings locale = 2;
|
|
bool reset_as_default = 3;
|
|
}
|
|
message LocaleSettings {
|
|
string language_code = 1;
|
|
string country_code = 2;
|
|
}
|