Created
May 16, 2018 14:39
-
-
Save griajobag/225c3a825a19738c71c273878609430a to your computer and use it in GitHub Desktop.
firestores
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 characters
package com.putuguna.insertcolldoc; | |
public class WebsiteModel { | |
private String name; | |
private String website; | |
private String webTopic; | |
private String idDocument; | |
public WebsiteModel(String name, String website, String webTopic) { | |
this.name = name; | |
this.website = website; | |
this.webTopic = webTopic; | |
} | |
public String getName() { | |
return name; | |
} | |
public void setName(String name) { | |
this.name = name; | |
} | |
public String getWebsite() { | |
return website; | |
} | |
public void setWebsite(String website) { | |
this.website = website; | |
} | |
public String getWebTopic() { | |
return webTopic; | |
} | |
public void setWebTopic(String webTopic) { | |
this.webTopic = webTopic; | |
} | |
public String getIdDocument() { | |
return idDocument; | |
} | |
public void setIdDocument(String idDocument) { | |
this.idDocument = idDocument; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment