linstrom/frontend-reactive/app/models/relation.ts
mStar 5fb5dae31e Start work on account display
Also no idea wtf is going on with the models
2024-11-21 16:34:20 +01:00

16 lines
424 B
TypeScript

import Model, { attr } from '@ember-data/model';
export default class Relation 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;
}
declare module 'ember-data/types/registries/model' {
export default interface ModelRegistry {
relation: Relation;
}
}