8/src/model/model.nim
2024-08-05 13:26:34 +05:30

11 lines
No EOL
222 B
Nim

type
User* = ref object of RootObj
id*: int
firstName*: string
lastName*: string
email*: string
phone*: string
password*: string
createdAt*: string
updatedAt*: string
accessLevel*: int