Skip to content

Instantly share code, notes, and snippets.

@griajobag
Created May 16, 2018 14:39
Show Gist options
  • Save griajobag/225c3a825a19738c71c273878609430a to your computer and use it in GitHub Desktop.
Save griajobag/225c3a825a19738c71c273878609430a to your computer and use it in GitHub Desktop.
firestores
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