mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 02:31:08 +00:00
11 lines
209 B
Protocol Buffer
11 lines
209 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;
|
|
bool isDeleted = 6;
|
|
} |