PHP Classes

File: client/src/app/models/User.ts

Recommend this page to a friend!
  Classes of mohammad anzawi   PHP Wallet API and Application   client/src/app/models/User.ts   Download  
File: client/src/app/models/User.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Wallet API and Application
Application to manage a wallet by calling an API
Author: By
Last change:
Date: 2 years ago
Size: 331 bytes
 

Contents

Class file image Download
export interface User { name: string email: string blocked: boolean is_admin: boolean token: string } export interface UserFormValues { email: string, password: string } export interface RegisterFormValues { name: string, email: string, password: string password_confirmation: string }