linstrom/frontend-reactive/app/models/relation.ts

17 lines
424 B
TypeScript
Raw Normal View History

import Model, { attr } from '@ember-data/model';
2024-11-20 14:39:24 +00:00
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;
2024-11-20 14:39:24 +00:00
}
declare module 'ember-data/types/registries/model' {
export default interface ModelRegistry {
relation: Relation;
}
}