Implement existing API types
This commit is contained in:
parent
e76490f637
commit
a6291fd098
14 changed files with 108 additions and 21 deletions
10
frontend-reactive/app/models/custom-account-field.ts
Normal file
10
frontend-reactive/app/models/custom-account-field.ts
Normal file
|
@ -0,0 +1,10 @@
|
|||
import Model, { attr } from '@ember-data/model'
|
||||
|
||||
export default class CustomAccountFieldModel extends Model {
|
||||
@attr declare createdAt: Date
|
||||
@attr declare updatedAt: Date
|
||||
@attr declare key: string
|
||||
@attr declare value: string
|
||||
@attr declare verified?: boolean
|
||||
@attr declare belongsToId: string
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue