7 lines
119 B
TypeScript
Raw Normal View History

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