Files
Ilya Groshev 02f511f40c Initial commit
2026-04-14 09:28:26 +03:00

19 lines
502 B
Protocol Buffer

syntax = "proto3";
option go_package = "lunar-tear/server/gen/proto;proto";
import "google/protobuf/empty.proto";
import "proto/data.proto";
package apb.api.notification;
service NotificationService {
rpc GetHeaderNotification (google.protobuf.Empty) returns (GetHeaderNotificationResponse);
}
message GetHeaderNotificationResponse {
int32 giftNotReceiveCount = 1;
int32 friendRequestReceiveCount = 2;
bool isExistUnreadInformation = 3;
map<string, apb.api.data.DiffData> diffUserData = 99;
}