Skip to content
Snippets Groups Projects
Select Git revision
  • 64ac34cbbc6a418570c532cc4f38e26e104ec7db
  • master default
2 results

Feed.java

Blame
  • Feed.java 509 B
    package com.mapps.seproject;
    
    /**
     * Created by kishore on 4/24/2017.
     */
    
    public class Feed {
    
        int id;
        String name,image,status,profilePic,timeStamp,url;
    
        public Feed(){}
    
        public Feed(int id,String name,String image,String status,String profilePic,String timeStamp,String url){
            this.id = id;
            this.name = name;
            this.image = image;
            this.status = status;
            this.profilePic = profilePic;
            this.timeStamp = timeStamp;
            this.url = url;
    
        }
    
    }