Skip to content

Instantly share code, notes, and snippets.

@ikourfaln
Created January 7, 2018 01:02
Show Gist options
  • Save ikourfaln/f7c020f38d0c098fe8e00bed5350b9bf to your computer and use it in GitHub Desktop.
Save ikourfaln/f7c020f38d0c098fe8e00bed5350b9bf to your computer and use it in GitHub Desktop.
UserList Model
export class UserList {
userId: string;
firstName: string;
lastName: string;
email: string;
phoneNumber: string;
roleName: string;
isLocked: boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment