mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
19 lines
345 B
Protocol Buffer
19 lines
345 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "CleanArchitecture.Proto.Users";
|
|
|
|
message GrpcUser {
|
|
string id = 1;
|
|
string firstName = 3;
|
|
string lastName = 4;
|
|
string email = 5;
|
|
optional string deletedAt = 6;
|
|
}
|
|
|
|
message GetUsersByIdsResult {
|
|
repeated GrpcUser users = 1;
|
|
}
|
|
|
|
message GetUsersByIdsRequest {
|
|
repeated string ids = 1;
|
|
} |