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

8 lines
141 B
TypeScript
Raw Normal View History

2022-03-09 18:37:04 +00:00
export interface RegisterDto {
username: string;
display_name: string;
email: string;
password: string;
password_repeat: string;
}