6 lines
90 B
TypeScript
6 lines
90 B
TypeScript
export interface IContactQuestion {
|
|
id: number;
|
|
question: string;
|
|
answer: string;
|
|
}
|