template-remult-app/shared/LauncherEntry.ts
2024-02-29 22:48:33 +01:00

12 lines
262 B
TypeScript

import { Entity, Fields } from "remult";
@Entity("LauncherEntry", { allowApiCrud: true, dbName: "core.launcher" })
export class LauncherEntry {
@Fields.uuid()
id!: string;
@Fields.string()
url!: string;
@Fields.string()
name!: string;
}