Created
August 1, 2021 06:42
-
-
Save Goldziher/565d29791d9c48da7a9ac9109cb8e2b1 to your computer and use it in GitHub Desktop.
Example UserDTO class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class UserDTO { | |
id: string; | |
firstName: string; | |
lastName: string; | |
email: string; | |
isActive: boolean; | |
location: string; | |
employer: string; | |
profession: string; | |
phoneNumber: string; | |
imageUrl: string; | |
birthDate: Date | string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment