@inv2/common
Version:
A common module for v2
20 lines (19 loc) • 480 B
TypeScript
import { UserDto } from "./user.dto";
import { RoleDto } from "./role.dto";
import { TenantDto } from "./tenant.dto";
export declare class UserTenantRoleDto {
user: Partial<UserDto>;
Tenant: Partial<{
id: string;
name: string;
Roles: Partial<RoleDto>[];
}>[];
}
export declare class TenantUserRoleDto {
tenant: Partial<TenantDto>;
User: Partial<{
id: string;
name: string;
Roles: Partial<RoleDto>[];
}>[];
}