diff options
author | Michael Hunteman <michael@huntm.net> | 2024-10-20 18:52:16 -0700 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2024-10-20 18:52:16 -0700 |
commit | 5a65b3a653eb4a9ca62332fa65c8d352e6dc782f (patch) | |
tree | 6f2fabb06936a7290a2f5e94a1b3aaf4534bf87c /client/src/models.ts | |
parent | 5c8f0ca091ff7f962260c75a0ffe4c99e7cdca3c (diff) |
Use UUID
Diffstat (limited to 'client/src/models.ts')
-rw-r--r-- | client/src/models.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/models.ts b/client/src/models.ts index 201a969..c0cff9e 100644 --- a/client/src/models.ts +++ b/client/src/models.ts @@ -1,5 +1,5 @@ export interface Guest { - id?: number; + id?: string; firstName: string; lastName: string; attendance?: string; |