mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
14 lines
229 B
Protocol Buffer
14 lines
229 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
enum UserEvent {
|
|
InitUser = 0;
|
|
SignIn = 1;
|
|
SignUp = 2;
|
|
SignOut = 3;
|
|
UpdateUser = 4;
|
|
GetUserProfile = 5;
|
|
CheckUser = 6;
|
|
SetAppearanceSetting = 7;
|
|
GetAppearanceSetting = 8;
|
|
}
|