Merge branch 'feat-hjj-ReportsManage' into dev
This commit is contained in:
commit
28d1a16b08
23
api/emailAlerts/emailAlerts.proto
Normal file
23
api/emailAlerts/emailAlerts.proto
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
syntax = "proto3";
|
||||||
|
package emailAlerts;
|
||||||
|
//import "descriptor.proto";
|
||||||
|
//import "validator.proto";
|
||||||
|
|
||||||
|
option go_package = "./;emailAlerts";
|
||||||
|
|
||||||
|
service EmailAlerts{
|
||||||
|
rpc EmailAlertsSubmit(EmailAlertsSubmitReq) returns (EmailAlertsSubmitResp);
|
||||||
|
}
|
||||||
|
|
||||||
|
message EmailAlertsSubmitReq{
|
||||||
|
string uuid = 2;
|
||||||
|
string firstName = 3;
|
||||||
|
string lastName = 4;
|
||||||
|
string email = 5;
|
||||||
|
string company = 6;
|
||||||
|
string phone = 7;
|
||||||
|
}
|
||||||
|
|
||||||
|
message EmailAlertsSubmitResp{
|
||||||
|
string msg = 1;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user