8 lines
125 B
TypeScript
8 lines
125 B
TypeScript
export class RepairData {
|
|
questionType: number;
|
|
sendTo: string;
|
|
title: string;
|
|
content: string;
|
|
constructor() {}
|
|
}
|