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/reply.ts

16 lines
282 B
TypeScript

import { UserModel } from './user';
export interface ReplyModel {
content: string;
edited: boolean;
hidden: boolean;
id: number;
index?: number;
inserted_at: string;
quote_id: number;
thread_id: number;
updated_at: string;
user_id: number;
user: UserModel;
}