23 lines
452 B
TypeScript
23 lines
452 B
TypeScript
import type { TCompany } from '../business/contact.js';
|
|
|
|
export interface IProduct {
|
|
name: string;
|
|
slogan: string;
|
|
description: string;
|
|
os: 'web-based';
|
|
category: 'Business Application';
|
|
offers: any[];
|
|
features: IProductFeature[];
|
|
landingPage: string;
|
|
appLink: string;
|
|
logoLink: string;
|
|
publisher?: TCompany;
|
|
}
|
|
|
|
export interface IProductFeature {
|
|
heading: string;
|
|
description: string;
|
|
linkText: string;
|
|
linkUrl: string;
|
|
}
|