12 lines
169 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
enum UserEvent {
2021-09-17 19:03:46 +08:00
InitUser = 0;
SignIn = 1;
SignUp = 2;
SignOut = 3;
UpdateUser = 4;
2021-09-17 19:03:46 +08:00
GetUserProfile = 5;
CheckUser = 6;
}