Skip to content

Instantly share code, notes, and snippets.

@jsmuster
Created December 24, 2018 14:44
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/32d6ccceb22ab6c87ca9a380c97d07f9 to your computer and use it in GitHub Desktop.
Save jsmuster/32d6ccceb22ab6c87ca9a380c97d07f9 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
import {UserInfoModel} from '../models/userInfo'
@Component({
selector: 'display-user-data',
templateUrl: './display-user-data.component.html',
styleUrls: ['./display-user-data.component.css']
})
export class DisplayUserDataComponent implements OnInit {
user: UserInfoModel = new UserInfoModel({guid: "D21ds12x",
customerUid: "cust2dsa12dsa",
first_name: "John",
last_name: "Doe",
email: "email@email.com",
zipcode: 10283,
password: "Idasn2x2#"});
constructor() { }
ngOnInit()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment