This repository has been archived on 2024-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
icynet-auth-server/src/modules/ssr-front-end/register/register.interfaces.ts
2022-09-20 17:49:42 +03:00

8 lines
141 B
TypeScript

export interface RegisterDto {
username: string;
display_name: string;
email: string;
password: string;
password_repeat: string;
}