Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.71 KB | None | 0 0
  1. package com.nasutek.sliceoftech;
  2.  
  3. public class RSSPost {
  4.  
  5.     public String title;
  6.     public String link;
  7.     public String publishdate;
  8.     public String creator;
  9.     public String sharelink;
  10.     public String description;
  11.     public String shortcontent;
  12.     public String thumbnail;
  13.  
  14.     public RSSPost()
  15.         {
  16.         }
  17.  
  18.     public RSSPost(String title, String link, String publishdate, String creator, String sharelink, String description, String shortcontent, String thumbnail)
  19.         {
  20.             this.title = title;
  21.             this.link = link;
  22.             this.publishdate = publishdate;
  23.             this.creator = creator;
  24.             this.sharelink = sharelink;
  25.             this.description = description;
  26.             this.shortcontent = shortcontent;
  27.             this.thumbnail = thumbnail;
  28.         }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement