Skip to content

Instantly share code, notes, and snippets.

@jsmuster
Last active December 24, 2018 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsmuster/fde7fa6b807279769e771e8c386dadeb to your computer and use it in GitHub Desktop.
Save jsmuster/fde7fa6b807279769e771e8c386dadeb to your computer and use it in GitHub Desktop.
export class UserInfoModel
{
guid: string;
customerUid: string;
first_name: string;
last_name: string;
email: string;
zipcode: string;
password: string;
constructor(obj: any = null)
{
if(obj != null)
{
Object.assign(this, obj);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment