UNPKG
@unq-ui/instagram-model-js
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Instagram model
@unq-ui/instagram-model-js
/
src
/
Model
/
User.js
11 lines
(10 loc)
•
237 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
class
User
{
constructor
(id, name, email, password, image, followers) {
this
.id = id;
this
.name = name;
this
.email = email;
this
.password = password;
this
.image = image;
this
.followers = followers; } }