11 lines
142 B
Protocol Buffer
11 lines
142 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package common;
|
|
|
|
option go_package = "models/common;common";
|
|
|
|
message GetArticle{
|
|
string id = 1;
|
|
string tenant = 2;
|
|
}
|