UNPKG

pl4y-data-library

Version:

This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.

9 lines (8 loc) 293 B
import { SuccessResponse } from "../../../response/success-response.model"; export declare class UserRegisterSuccessResponse { id: string; email: string; tenantId: string; } export declare class UserCreateSuccessResponseDto extends SuccessResponse<UserRegisterSuccessResponse> { }