Files
freeplanet/src/model/signup-option.ts

16 lines
329 B
TypeScript
Raw Normal View History

2019-12-29 23:29:56 +01:00
import { IUserProfile } from '@src/model/UserStore'
export interface ISignupOptions {
email?: string
username: string
2019-10-10 16:53:33 +02:00
name?: string
surname?: string
password?: string
lang?: string
repeatPassword?: string
2018-11-11 19:27:04 +01:00
terms?: boolean
aportador_solidario?: string
2019-12-29 23:29:56 +01:00
profile?: IUserProfile
// already_registered: boolean
}