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