verdnatura-chat/app/definitions/IAttachment.ts

11 lines
194 B
TypeScript
Raw Normal View History

2021-12-24 13:12:38 +00:00
export interface IAttachment {
title: string;
type: string;
description: string;
title_link?: string;
image_url?: string;
image_type?: string;
video_url?: string;
video_type?: string;
}