1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-10 09:02:50 +00:00
Files
classic-wow-forums/client/app/model/thread.ts

21 lines
422 B
TypeScript

import { ReplyModel } from './reply';
import { UserModel } from './user';
export interface ThreadModel {
category_id: number;
title: string;
edited: boolean;
id: number;
inserted_at: string;
last_reply: UserModel;
last_reply_id: number;
locked: boolean;
replies: ReplyModel[];
reply_count: number;
sticky: boolean;
updated_at: string;
user: UserModel;
user_id: number;
view_count: number;
}