All Downloads are FREE. Search and download functionalities are using the official Maven repository.

er.notification.notification-application.1.0.1.source-code.notification.proto Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package notification;

option java_package = "com.smoketurner.notification.application.protos";
option java_outer_classname = "NotificationProtos";
option optimize_for = SPEED;

message Property {
  required string key = 1;
  required string value = 2;
};

message NotificationPB {
  required int64 id = 1;
  required string category = 2;
  required string message = 3;
  required int64 created_at = 4;
  repeated Property property = 5;
};

message NotificationListPB {
  repeated NotificationPB notification = 1;
  repeated int64 deleted_id = 2;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy