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

10 lines
271 B
TypeScript
Raw Normal View History

2024-11-20 14:39:24 +00:00
import Model, { attr } from '@ember-data/model'
import type EmoteModel from './emote'
export default class ReactionModel extends Model {
@attr declare noteId: string
@attr declare reactorId: string
@attr declare emoteId: number
@attr declare emote: EmoteModel
}