mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
11 lines
197 B
Protocol Buffer
11 lines
197 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message UserPreferences {
|
||
|
string user_id = 1;
|
||
|
AppearanceSettings appearance_setting = 2;
|
||
|
}
|
||
|
message AppearanceSettings {
|
||
|
string theme = 1;
|
||
|
string language = 2;
|
||
|
}
|