Implement existing API types

This commit is contained in:
Melody Becker 2024-11-20 15:39:24 +01:00
parent e76490f637
commit a6291fd098
14 changed files with 108 additions and 21 deletions

View file

@ -0,0 +1,10 @@
import Model, { attr } from '@ember-data/model'
export default class RelationModel extends Model {
@attr declare createdAt: Date
@attr declare updatedAt: Date
@attr declare fromId: string
@attr declare toId: string
@attr declare requested: boolean
@attr declare accepted: boolean
}