Files
freeplanet/src/model/signup-option.ts
2020-03-21 10:33:11 +01:00

16 lines
329 B
TypeScript
Executable File

import { IUserProfile } from '@src/model/UserStore'
export interface ISignupOptions {
email?: string
username: string
name?: string
surname?: string
password?: string
lang?: string
repeatPassword?: string
terms?: boolean
aportador_solidario?: string
profile?: IUserProfile
// already_registered: boolean
}