mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-11 09:32:51 +00:00
11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
export interface RepyModel {
|
|
content: string;
|
|
edited: boolean;
|
|
id: number;
|
|
inserted_at: string;
|
|
quote: boolean;
|
|
thread_id: number;
|
|
updated_at: string;
|
|
user_id: number;
|
|
}
|