Files
app/ts_interfaces/data/loint-reception.app.ts
T

14 lines
182 B
TypeScript
Raw Normal View History

2024-09-29 13:56:38 +02:00
export interface IApp {
/**
* must be unique
*/
id: string;
/**
* should be unique
*/
name: string;
description: string;
logoUrl: string;
appUrl: string;
}