0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-06-30 02:31:08 +00:00
CleanArchitecture/CleanArchitecture.Proto/Users/Models.proto
2023-03-13 20:35:00 +01:00

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;
}