Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.alexandergartemov.backendlessdatabase;
- import java.sql.Date;
- /**
- * Created by Alexa on 25.07.2016.
- */
- public class News {
- private String _id;
- private String title;
- private String predescription;
- private String description;
- private String image;
- private Date created;
- private Date updated;
- public News() {
- }
- public String get_id() {
- return _id;
- }
- public void set_id(String _id) {
- this._id = _id;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getPredescription() {
- return predescription;
- }
- public void setPredescription(String predescription) {
- this.predescription = predescription;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public String getImage() {
- return image;
- }
- public void setImage(String image) {
- this.image = image;
- }
- public Date getCreated() {
- return created;
- }
- public void setCreated(Date created) {
- this.created = created;
- }
- public Date getUpdated() {
- return updated;
- }
- public void setUpdated(Date updated) {
- this.updated = updated;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement