Files
float-users/src/app/modules/profile/components/account/AccountModel.ts
T
2023-03-25 23:06:51 -04:00

26 lines
446 B
TypeScript

export interface IAccount {
username: string
email: string
language: string
timeZone: string
communications: {
email: boolean
sms: boolean
phone: boolean
}
requireInfo: boolean
}
export const defaultAccount: IAccount = {
username: 'max_stone',
email: 'nick.watson@loop.com',
language: 'en',
timeZone: 'Alaska',
communications: {
email: false,
sms: true,
phone: false,
},
requireInfo: false,
}