Created
July 31, 2015 09:04
Revisions
-
Kotlin-Native created this gist
Jul 31, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ public class User { private final String firstName; private final String lastName; private final boolean loggedIn; public User(String firstName, String lastName, boolean loggedIn) { this.firstName = firstName; this.lastName = lastName; this.loggedIn = loggedIn; } public String getFirstName() { return firstName; } public String getLastName() { return lastName; } public boolean isLoggedIn() { return loggedIn; } }