12 lines
262 B
TypeScript
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;
|
|
}
|