9 lines
176 B
Protocol Buffer
Raw Normal View History

2021-09-07 23:30:43 +08:00
syntax = "proto3";
2021-10-14 14:34:22 +08:00
enum UserNotification {
2021-09-07 23:30:43 +08:00
Unknown = 0;
UserAuthChanged = 1;
UserProfileUpdated = 2;
UserUnauthorized = 3;
2021-12-04 17:31:32 +08:00
UserWsConnectStateChanged = 4;
2021-09-07 23:30:43 +08:00
}