From 88ad121a90ff539025c4c5fbf65b1adb1f8638a5 Mon Sep 17 00:00:00 2001 From: Jonathan Garvey Date: Wed, 28 Apr 2021 18:01:04 -0700 Subject: [PATCH] chore(quickstart): fix missing import and decorator --- getting-started/quick-start.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/getting-started/quick-start.md b/getting-started/quick-start.md index 815c3bf..0ed15a6 100644 --- a/getting-started/quick-start.md +++ b/getting-started/quick-start.md @@ -46,8 +46,12 @@ Before you can actually create your state, you will need to create your entity m {% tabs %} {% tab title="models/customer.model.ts" %} ```typescript -import { Key } from '@briebug/ngrx-auto-entity'; +import { Entity, Key } from '@briebug/ngrx-auto-entity'; +@Entity({ + modelName: 'Customer', + uriName: 'customers' +}) export class Customer { @Key id: number; name: string;