Skip to content

Commit

Permalink
feat: Add Membership interface
Browse files Browse the repository at this point in the history
This commit adds the Membership interface, which includes properties for `created`, `id`, `token`, `email`, and `user_id`. This interface has been generated using a code generation tool.
  • Loading branch information
realashleybailey committed Oct 22, 2023
1 parent 258ae50 commit b3a3daf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Empty file.
9 changes: 9 additions & 0 deletions frontend/src/types/api/membership.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Generated by https://quicktype.io

export interface Membership {
created: string;
id: number;
token: string;
email: string;
user_id: number;
}

0 comments on commit b3a3daf

Please sign in to comment.