UNPKG

pl4y-data-library

Version:

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

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