mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-17 21:31:31 +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;
|
||
|
}
|