Skip to content

Instantly share code, notes, and snippets.

@sunilkumarmedium
Created November 22, 2020 09:59
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 sunilkumarmedium/7b2e421c285eb2abeab23d90b6a78dcf to your computer and use it in GitHub Desktop.
Save sunilkumarmedium/7b2e421c285eb2abeab23d90b6a78dcf to your computer and use it in GitHub Desktop.
user.model.ts
export interface User {
id: string| undefined;
username: string| undefined;
firstname: string| undefined;
lastname: string| undefined;
status: string | undefined;
createddate: any;
token: string | undefined;
refreshToken: string | undefined;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment