Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34301 ranu 1
package com.spice.profitmandi.web.req;
2
 
3
public class RbmRatingRequest {
4
    private String comment;
5
    private int rating;
6
 
7
    // Getters and Setters
8
    public String getComment() { return comment; }
9
    public void setComment(String comment) { this.comment = comment; }
10
 
11
    public int getRating() { return rating; }
12
    public void setRating(int rating) { this.rating = rating; }
13
}