Advertisement
ipungpurwono

Untitled

Jan 28th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package com.banyucenter.atlasapp;
  2.  
  3. public class User {
  4.     public String id;
  5.     public String userName;
  6.     public String email;
  7.     public String password;
  8.  
  9.     public User(String id, String userName, String email, String password) {
  10.         this.id = id;
  11.         this.userName = userName;
  12.         this.email = email;
  13.         this.password = password;
  14.     }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement