0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-07-01 02:52:56 +00:00
CleanArchitecture/CleanArchitecture.Proto/Tenants/Models.proto
2023-08-28 19:41:49 +02:00

17 lines
287 B
Protocol Buffer

syntax = "proto3";
option csharp_namespace = "CleanArchitecture.Proto.Tenants";
message Tenant {
string id = 1;
string name = 2;
bool isDeleted = 3;
}
message GetTenantsByIdsResult {
repeated Tenant tenants = 1;
}
message GetTenantsByIdsRequest {
repeated string ids = 1;
}