mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-05-16 17:21:54 +00:00
Edit schema
Took 2 hours 51 minutes
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
type CreateUserQuery = {
|
||||
email: string
|
||||
password: string
|
||||
firstName: string
|
||||
lastName: string
|
||||
}
|
||||
|
||||
type ReadUserQuery = {
|
||||
id?: string
|
||||
}
|
||||
|
||||
type DeleteUserQuery = {
|
||||
id: string
|
||||
}
|
||||
|
||||
export type {CreateUserQuery, ReadUserQuery, DeleteUserQuery};
|
||||
Reference in New Issue
Block a user