mirror of
https://github.com/LightZirconite/Microsoft-Rewards-Bot.git
synced 2026-01-19 21:23:56 +00:00
18 lines
311 B
TypeScript
18 lines
311 B
TypeScript
export interface CreatedAccount {
|
|
email: string
|
|
password: string
|
|
birthdate: {
|
|
day: number
|
|
month: number
|
|
year: number
|
|
}
|
|
firstName: string
|
|
lastName: string
|
|
createdAt: string
|
|
referralUrl?: string
|
|
recoveryEmail?: string
|
|
totpSecret?: string
|
|
recoveryCode?: string
|
|
notes?: string
|
|
}
|