0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-06-29 18:21:08 +00:00
CleanArchitecture/CleanArchitecture.Proto/Tenants/Models.proto
2024-12-08 22:51:08 +01:00

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