Files
app/ts_interfaces/data/loint-reception.app.ts
T
2024-09-29 13:56:38 +02:00

14 lines
182 B
TypeScript

export interface IApp {
/**
* must be unique
*/
id: string;
/**
* should be unique
*/
name: string;
description: string;
logoUrl: string;
appUrl: string;
}