src/app/core/auth/user-form/user-form.model.ts
Properties |
Type : string
|
name |
Type : string
|
password |
Type : string
|
roles |
Type : Array<string>
|
username |
Type : string
|
export class UserFormModel {
username: string;
password: string;
name: string;
email: string;
roles: Array<string>;
}