2016-03-17 21:00:32 -07:00

7 lines
119 B
TypeScript

// imagine this is the result of a login
export class User {
id = 42;
name = 'Bongo';
email = 'bongo@amazing.io'
};