Skip to content

Instantly share code, notes, and snippets.

@Goldziher
Created August 1, 2021 06:42
Show Gist options
  • Save Goldziher/565d29791d9c48da7a9ac9109cb8e2b1 to your computer and use it in GitHub Desktop.
Save Goldziher/565d29791d9c48da7a9ac9109cb8e2b1 to your computer and use it in GitHub Desktop.
Example UserDTO class
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