aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/juick/Recommendation.java
blob: 4cfa67c29da3e590a85daf327fd5255aa8e11172 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.juick;

/**
 * Created by vt on 08/02/16.
 */
public class Recommendation {
    User from;

    public User getFrom() {
        return from;
    }

    public Recommendation(User from) {
        this.from = from;
    }
}