This repository has been archived on 2025-10-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
vikunja-frontend/src/models/totp.ts
2022-09-23 13:30:09 +02:00

14 lines
No EOL
292 B
TypeScript

import AbstractModel from './abstractModel'
import type {ITotp} from '@/modelTypes/ITotp'
export default class TotpModel extends AbstractModel<ITotp> implements ITotp {
secret = ''
enabled = false
url = ''
constructor(data: Partial<ITotp> = {}) {
super()
this.assignData(data)
}
}