mirror of
https://github.com/pawelmalak/flame.git
synced 2025-08-01 00:45:18 +02:00
8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
|
export interface App {
|
||
|
id: number;
|
||
|
name: string;
|
||
|
url: string;
|
||
|
icon: string;
|
||
|
createdAt: Date;
|
||
|
updatedAt: Date;
|
||
|
}
|