Subversion Repositories SmartDukaan

Rev

Rev 21730 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21339 kshitij.so 1
package com.spice.profitmandi.web.res;
2
 
3
public class Images
4
{
5
    private String title;
6
    private String url;
7
 
8
    public String getTitle ()
9
    {
10
        return title;
11
    }
12
 
13
    public void setTitle (String title)
14
    {
15
        this.title = title;
16
    }
17
 
18
    public String getUrl ()
19
    {
20
        return url;
21
    }
22
 
23
    public void setUrl (String url)
24
    {
25
        this.url = url;
26
    }
27
 
28
}