mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
17 lines
298 B
Protocol Buffer
17 lines
298 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option csharp_namespace = "CleanArchitecture.Proto.Tenants";
|
|
|
|
message Tenant {
|
|
string id = 1;
|
|
string name = 2;
|
|
optional string deletedAt = 3;
|
|
}
|
|
|
|
message GetTenantsByIdsResult {
|
|
repeated Tenant tenants = 1;
|
|
}
|
|
|
|
message GetTenantsByIdsRequest {
|
|
repeated string ids = 1;
|
|
} |