11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
|
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
|
||
|
}
|