blob: 4686b34a6b5757418c7810e4f908da2da5e5e233 (
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 PM {
private final User to;
public PM(User to) {
this.to = to;
}
public User getTo() {
return to;
}
}
|