mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 19:12:57 +00:00
18 lines
307 B
Protocol Buffer
18 lines
307 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "CleanArchitecture.Proto.Users";
|
|
|
|
import "Users/Models.proto";
|
|
|
|
service UsersApi {
|
|
rpc GetByIds(GetByIdsRequest) returns (GetByIdsResult);
|
|
}
|
|
|
|
message GetByIdsResult {
|
|
repeated GrpcUser users = 1;
|
|
}
|
|
|
|
message GetByIdsRequest {
|
|
repeated string ids = 1;
|
|
}
|